Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
To clean a string
Message
 
To
15/12/2000 23:42:15
Rahul Murarka
Sys-Con Engineering
Kolkata, India
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00454334
Message ID:
00454821
Views:
21
A simple quick hack:

lcStr contains the string you wish to change.
<b>
for lnASC = 0 to 255
	if !between(lnASC, 48,57) .and. !between(lnASC, 65, 90) .and. !between(lnASC, 97,122)
		lcStr = strtran(lcStr, chr(lnASC), "")	
	endif
endfor
lcStr = upper(lcStr)
</b>
Hope that helps..

- Erik Niese-Petersen

>Dear Sirs,
>
>Regards & Hello
>
>I want a small prog or solution to clean a string which will remove all things execpt numbers and Alphbets.
>
>e.g:
>
>Original string is "abcd ## 55 JJJ )))345 )) +++++"
>Result I should get: "ABCD55JJJ345"
>RESULT IS IN UPPERCASE:
>
>
>EARLY REPLY IS APPRICIATED.
>
>RAHUL
- Erik Niese-Petersen

Crazy Dane in USA.
Previous
Reply
Map
View

Click here to load this message in the networking platform