Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to parse a line? 1

Status
Not open for further replies.

monak

MIS
Jul 2, 2002
22
US
Using the Input# to get lines out of the file. Is there to parse the line itself so I can do a StrCmp on individual words in the line?
 
You could do
Code:
  Dim Words() as String
  Words = Split(<your line>, &quot; &quot;)
and then you have an split the line up at every space into the array Words()
 
Thank you segementationfault for the information. You have some brain cells from wasting away from frustration!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top