Jul 11, 2002 #1 monak MIS Joined Jul 2, 2002 Messages 22 Location 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 Joined Jun 21, 2001 Messages 160 Location 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 Joined Jul 2, 2002 Messages 22 Location 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!