N
Nutella
Hi all,
I need to validate a string in C-sharp using the Regex class.
The rules are:
-can only contain alpha-numeric characters, '_' or '-'
-Nothing else, no spaces, no funny characters.
e.g. "HELLO_WORLD-1234_abc-ABC"
What's the Regex pattern for this??
I need to validate a string in C-sharp using the Regex class.
The rules are:
-can only contain alpha-numeric characters, '_' or '-'
-Nothing else, no spaces, no funny characters.
e.g. "HELLO_WORLD-1234_abc-ABC"
What's the Regex pattern for this??