I need a regex that matches the alphanumeric patterns except totally numeric ones.
asdfgesod valid 1asdndwdd valid asd124asd valid a2asd43bd valid 123346678 invalid
|
I need a regex that matches the alphanumeric patterns except totally numeric ones. asdfgesod valid 1asdndwdd valid asd124asd valid a2asd43bd valid 123346678 invalid |
|||||||
|
Broken down:
|
|||||||||
|
|
You can try:
The negative lookahead |
|||
|
|
|
A solution would be to first check if the string contains only digits, if not check rest of the string. The following regex would do that:
See it in action here: http://regexr.com?2v8n5 |
|||
|
|
|
Use in case of java BTW: if string matches regex: |
||||
|
|