Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do you extract parts of a string in a field?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00455835
Message ID:
00455875
Views:
24
>>Hi All! How do you extract certain parts of a string. Like I want to replace the first three digits of a field with something. ie. 50-1020 with 95-1020
>>Anything that begins with 50- I want to replace it with 95-
>>
>>Thanks in advance for your help!
>>
>>Joe
>
>Joe: You can use
>
>
>REPLACE MyField WITH "95-" + SUBS(MyField,4)
>
>
>or also you can use
>
>
>REPLACE MyField WITH STRTRAN(MyField, "50-", "95-")
>
>
>Selects the sentence that but to you agrees

REPLACE MyField WITH STRTRAN(MyField, "50-", "95-")
Luis,
This code will REPLACE all occurences of "50-" not just at the beginnig of the field.
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform