Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Strip Multiple Spaces
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00339153
Message ID:
00339250
Views:
16
>>>In another language I work with there is a function that will replace multiple spaces with a single space. Is there one for VFP?
>>>
>>>TIA
>>
>>Alan,
>>
>>Not directly in VFP, however, the foxtools library has the function Reduce(). That will handle the removal of spaces appropriately. You might want to look at my Extended Foxtools Help File (under Coding, Syntax and Commands) available in the UT download section.
>
>Again, you invoke the wrath of the WSH gods...how about:
>
>oRegExp = CREATEOBJ("Vbscript.RegExp")
>oRegExp.Global = .t.
>oRegExp.Pattern = "\s+" && this matches any occurrances of space, tab, ff, CR
>cVar = oRegExp.Replace(cVar," ")


Unintentionally, I assure you. I was more worried about the foxtools gods< g >.
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform