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.
1.4m articles
1.4m replys
5 comments
57.0k users