Hi team,
I need to see if the record only contains Alphabetical Characters and Numbers, currently it can only detect Alphabetical Characters, how should I change the regular expression, so that it contains Alphabetical Characters and Numbers.
Now: [a-zA-Z]+
To-be: ???
Thank you.
Solved! Go to Solution.
Hey @Paddi, in the same way that you have A-Z, you just need to add 0-9 to check for numbers so it'd be:
[a-zA-Z0-9]+
@DataNath Thank you, it works!