I have a TextInput field, which should be limited to uppercase letters, lowercase letters, numbers and underscores. This is the code I'm trying to use to limit characters:
restrict="\\AZ\\az\\0-9\\ \\_\\-"
I am using MXML for this Textinput component.
Unfortunately, this does not limit the \ character, which is the last character that I would like to limit.
How to add backslash to list of restricted characters?
thanks
Stephen
Stephenadams
source share