Message
General information
Fórum:
Visual FoxPro
Category:
Programação, sintaxe e comandos
Título:
Miscellaneous
ID da thread:
01158677
ID da mensagem:
01158823
Views:
26
>If you download Craig Boyd's RegExp.FLL, you can do it in fewer lines. :-)
>
>
SET LIBRARY TO HOME(1)+"regexp" ADDITIVE
>
>lcX = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,10"
>? lcX
>? regexp(lcx, "(.*?,.*?,.*?,.*?,.*?,.*?),", 1, "\1,\n")
It can also be done with WSH
lcX = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9,10"
oRx = CreateObject('VBScript.Regexp')
oRx.Global = .T.
oRx.Pattern = "(.*?,.*?,.*?,.*?,.*?,.*?,)"
? oRx.Replace(lcX, "$1" + CHR(13) + CHR(10))
--sb--
Previous
Next
Responder
Mapa
View