I want to allow (.) and (a-zA-Z) letters and _ and - , I have some problems with the (.) ,
Any idea ?
Thanks in advance ,
Ish
[a-zA-Z_\-.] should work. You might have to use a double slash, depending on the language you are using.
[a-zA-Z_\-.]