473,404 Members | 2,195 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Grab Whole Word In C#

Hello,
I am new with C# but have experienced in other similar languages such as Java. What I am trying to do is search a long .l5k file for any time a line begins with "f_". Once I find this line, I want to grab the whole "f_" phrase i.e. "f_someRandomTextFollows". I know how to find the line that begins with "f_".

How do I grab the whole "f_" word by just knowing the index and not knowing the length?

Thanks for any comments.
Jul 11 '07 #1
1 1190
TRScheel
638 Expert 512MB
Hello,
I am new with C# but have experienced in other similar languages such as Java. What I am trying to do is search a long .l5k file for any time a line begins with "f_". Once I find this line, I want to grab the whole "f_" phrase i.e. "f_someRandomTextFollows". I know how to find the line that begins with "f_".

How do I grab the whole "f_" word by just knowing the index and not knowing the length?

Thanks for any comments.
This snippet should work:

Expand|Select|Wrap|Line Numbers
  1. StreamReader SReader = new StreamReader(filelocation);
  2. List<string> values = new List<string>();
  3. while (!SReader.EndOfStream)
  4. {
  5.     string currentLine = SReader.ReadLine();
  6.     if (currentLine.StartsWith("f_"))
  7.         values.Add(currentLine);
  8. }
  9. SReader.Close();
  10.  
Where 'filelocation' is a string that is where the file is located.

What it does is goes through the stream, and reads each line and stores it in a temp variable 'currentLine'. It then checks that line to see if it starts with "f_". If it does, its added to the 'values' list. You now have every line that starts with "f_" in that list.
Jul 11 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: leeonions | last post by:
Hi there, i am trying to use regular expressions to search through a text string and replace a given whole word. take the string = "The matsat on the mat!" (bad example i know) i want to...
2
by: leeonions | last post by:
Hi there, i am trying to use regular expressions to search through a text string and replace a given whole word. take the string = "The matsat on the mat!" (bad example i know) i want to...
2
by: summersurfer25 | last post by:
Hello, I am new with C# but have experienced in other similar languages such as Java. What I am trying to do is search a long .l5k file for any time a line begins with "f_". Once I find this...
19
by: JRough | last post by:
I have used this function to create a string called $headers: function GetHeaders($file_name){ return "<th><a href='".$file_name."&order_by=l_e'>L_E</a></th> <th><a href='"....
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.