Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Replace character expression
Message
From
08/07/2010 11:45:37
Dragan Nedeljkovich
Now officially retired
Zrenjanin, Serbia
 
 
To
08/07/2010 04:02:39
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01471799
Message ID:
01471856
Views:
35
>>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.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform