I'm trying to validate a textbox to accept just alpha-numeric and "\" character, something like this: Testing123\ will return true.
Below is what I've tried so far:
"^[a-zA-Z0-9]*?$"
The above expression can accept alpha-numeric with no restriction of number of letters which working fine.
If not mistaken, "\" behave as escape character and so I tried below expression but it's throwing unterminated expression exception:
"^[a-zA-Z0-9\\]*?$"