Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Replace character expression
Message
De
08/07/2010 11:45:37
Dragan Nedeljkovich (En ligne)
Now officially retired
Zrenjanin, Serbia
 
 
À
08/07/2010 04:02:39
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01471799
Message ID:
01471856
Vues:
34
>>abcdefg [01] = is what i need
>>as opposed to submitted data which reads # abcdefg [1]
>
>Well, in that case you could just brute-force it in 10 lines of code, no RegEx needed, maintainable in pure VFP:
>
>cFile = strtran(cFile,"[0]","[00]") && if you need to handle [0]
>cFile = strtran(cFile,"[1]","[01]")
>cFile = strtran(cFile,"[2]","[02]")
>cFile = strtran(cFile,"[3]","[03]")
>cFile = strtran(cFile,"[4]","[04]")
>cFile = strtran(cFile,"[5]","[05]")
>cFile = strtran(cFile,"[6]","[06]")
>cFile = strtran(cFile,"[7]","[07]")
>cFile = strtran(cFile,"[8]","[08]")
>cFile = strtran(cFile,"[9]","[09]")
>
>* or, if you wanted to do it in "one line of code", you could nest the above calls < eg >
>
>Some people might pooh-pooh brute-force solutions, but they have their place.

You didn't write a loop? Tsk, tsk...

back to same old

the first online autobiography, unfinished by design
What, me reckless? I'm full of recks!
Balkans, eh? Count them.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform