I want a regex pattern which will allow me any chars, but it will not allow (0-9) numbers?
Simply:
/^([^0-9]*)$/
That pattern matches any number of characters that is not 0 through 9.
0
9
I recommend checking out http://regexpal.com/. It will let you easily test out a regex.
2.1m questions
2.1m answers
60 comments
57.0k users