Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Opinions for best way to check a string for invalid Char
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00189473
Message ID:
00189489
Views:
17
Thanks Mark,
Actually, I need to check if there are characters outside of a list of valid characters. For example A-Z,a-z,0-9, are valid characters, how can I tell if an address has a value outside of these. I know I'm going to be using ASCII values, but what's the best way to search through the string? I use your method a lot myself when I know what I'm looking for. In this case it could be a rather large set of invalid characters, so I don't think it would be the best choice here. Thanks again.
Marcus.

>Marcus,
>If you want to remove the characters (not just locate them) then I recommend STRTRAN:
>
>pcName = STRTRAN(pcName, "#", "")
>pcName = STRTRAN(pcName, "!", "")
>pcName = STRTRAN(pcName, "$", "")

>..and so on...
>
>This function is nice because it removes every instance very quickly.
>Mark
>
>>I need to check names and addresses for invalid characters. What do you guys think is the best command/function to use for this. Thanks for your help.
>>Marcus.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform