Regular Expression
- by TiagoDias
Hi all,
I cannot manage to get a working regular expression (for use in ASP.NEt Validataor) for the following criteria:
- I want all chars from A-Z a-z 0-9
- I don't want the Enter key
I have the expression: [\w\s,.-/]*[^\n]
but that don't works.
Please give-me a hint, Thanks.