I am working on validation using RegEx for a text field for names. I am using the RegEx below but it is not working:
^[a-zA-Z,'.\-\s]*$
and also this:
(?! $)[a-zA-Z ]
Please help, thanks!
|
I am working on validation using RegEx for a text field for names. I am using the RegEx below but it is not working:
and also this:
Please help, thanks! |
|||||
|
|
This should work: Edit: As per @nhahtdh's comment, the regex above will allow anything which is not a digit. You could use something like so: |
|||||||||||
|
|
I guess this is what you want
|
|||
|
|