Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to separate an variable
Message
From
18/11/2017 16:20:40
 
 
To
18/11/2017 09:20:10
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro Beta
Miscellaneous
Thread ID:
01655668
Message ID:
01655679
Views:
62
can use getwordcount and getwordnum to retrieve the words wanted.i give you the result in a cursor.
create cursor ycurs (xword c(20))
local m.partno,m.xw
m.partno='abc defg hijkl'
for i=1 to getwordcount(m.partno)
m.xw=getwordnum(m.partno,i)
if ! empty(m.xw)
insert into ycurs values ( m.xw)
endi
endfor

brow
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform