Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:53:47+00:00 2026-06-15T07:53:47+00:00

I need to know is there some string at exact location on the .txt

  • 0

I need to know is there some string at exact location on the .txt file.
I know how to found concrete string with Contains method, but since I do not need to search whole file (string will always be on the same location) I’m trying to find quickest solution.

if (searchedText.Contains(item))
{
   Console.WriteLine("Found {0}",item);
   break;
}

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T07:53:49+00:00Added an answer on June 15, 2026 at 7:53 am

    If it’s in UTF-8 and isn’t guaranteed to be ASCII, then you’ll just have to read the relevant number of characters. Something like:

     using (var reader = File.OpenText("test.txt"))
     {
         char[] buffer = new char[16 * 1024];
         int charsLeft = location;
         while (charsLeft > 0)
         {
             int charsRead = reader.Read(buffer, 0, Math.Min(buffer.Length,
                                                             charsLeft));
             if (charsRead <= 0)
             {
                 throw new IOException("Incomplete data"); // Or whatever
             }
             charsLeft -= charsRead;
         }
         string line = reader.ReadLine();
         bool found = line.StartsWith(targetText);
         ...
     }
    

    Notes:

    • This is inefficient in terms of reading the complete line starting from the target location. That’s simpler than looping to make sure the right data is read, but if you have files with really long lines, you may want to tweak this.
    • This code doesn’t cope with characters which aren’t in the BMP (Basic Multilingual Plane). It would count them as two characters, as they’re read as two UTF-16 code units. This is unlikely to affect you.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As you may know, in many occasions, there is a need to flag some
I need to know if there's a way in PHP to echo a string
I know there is formula for going RGB -> Luminance, but I need given
(I know there's some close duplicates out there, but none of them were able
I know there is a URL class in Java, but I need methods to
Suppose there is a switch on some method like static string switchExample(string abc){ switch(abc.ToUpper())
I need to know if there's any way (or another distinct approach) to an
I need to know if there is a way to create a custom shortcut
I know there has to be a way: I need help getting any hot
I need something like a temporary in-memory key-value store. I know there are solutions

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.