Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to separate an variable
Message
De
18/11/2017 16:20:40
 
 
À
18/11/2017 09:20:10
Information générale
Forum:
Visual FoxPro
Catégorie:
Visual FoxPro Beta
Divers
Thread ID:
01655668
Message ID:
01655679
Vues:
71
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform