This line:
should "remove" all lowercase letters from ExtraChars (replace with empty strings).
If ExtraChars is: "5?" it removes all.
---
Actually, the complete thing I would need is a regex expression to accept any letters and special characters passed by the user (ExtraChars parameter).
B4X:
ExtraChars = Regex.Replace ("([^a-z])", ExtraChars, "")
If ExtraChars is: "5?" it removes all.
---
Actually, the complete thing I would need is a regex expression to accept any letters and special characters passed by the user (ExtraChars parameter).