Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
String parsing
Message
From
08/10/1999 09:26:17
Charlie Schreiner
Myers and Stauffer Consulting
Topeka, Kansas, United States
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00273042
Message ID:
00274174
Views:
40
I guess it depends on your application. If you pass me a string with ",," embedded in it, I would assume that you intend for one of the elements to be empty. If it turns out that empty has no meaning, you can handle that case with more logic. My reason for mentioning the STRTRAN/ALINES technique is that it's the easiest way to separate a string and stuff an array.



>Charlie,
>
>
>>Here's another technique for parsing strings.
>>
>>Replace the commas with CHR(13) using STRTRAN.
>>String = STRTRAN(m.String,',', CHR(13))
>>Now put each element in an array.
>>ALINES(aStrings, m.String)
>>FOR EACH String IN aStrings
>>   * Do something with each m.String.
>>ENDFOR
>>
>
>It's interesting but not universal enough. What we can do if we have 2 commas ,(for example: "I,,the,12,etc.,," there a comma is an isolate case of a delimiter? We don't want to have additional empty members of array.
Charlie
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform