Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Parsing a text string
Message
From
15/02/2003 11:37:36
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00753613
Message ID:
00753713
Views:
20
Right :) There are many other ways more but I only included this one as it was the fastest in my tests (for relatively short list of items).
Cetin

>Hi Cetin,
>
>Regarding your "older" method, I might suggest an alternative:
>
>
>tcStr = "2222 3333 4444 5555"
>tcStr = STRTRAN(tcStr, ' ', chr(13))
>
>for i=1 to memlines(tcStr) && now tcStr may be treated like a 1 column array
> ...
>endfor
>
>
>
>Hugh
>
>
>>*Older - for short lists this was fastest as I could see
>>tcStr = "2222 3333 4444 5555"
>>tcStr = chrtran(tcStr, " ",",")
>>oDummy = createobject('Listbox')
>>with oDummy
>> .RowSourceType = 1 && Value
>> .RowSource = tcStr
>> dimension arrVals[.ListCount]
>> for ix=1 to .ListCount
>> arrVals[ix] = .List(ix)
>> endfor
>>endwith
>>release oDummy
>>Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform