Jul 11, 2002 #1 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?
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?
Jul 11, 2002 1 #2 segmentationfault Programmer Jun 21, 2001 160 US You could do Code: Dim Words() as String Words = Split(<your line>, " ") and then you have an split the line up at every space into the array Words() Upvote 0 Downvote
You could do Code: Dim Words() as String Words = Split(<your line>, " ") and then you have an split the line up at every space into the array Words()
Jul 11, 2002 Thread starter #3 monak MIS Jul 2, 2002 22 US Thank you segementationfault for the information. You have some brain cells from wasting away from frustration! Upvote 0 Downvote
Thank you segementationfault for the information. You have some brain cells from wasting away from frustration!