|
Help with RegEx validation ...
So far I have this regex code
/[^a-z\-\,\']|(\,.*\,)$/
which should check if a string is:
contains just alpha nocase,
one or more single spaces allowed,
apostrophe and dash allowed,
just one comma allowed
Unfortunately it doesn't work.
Any help cordially appreciated.
contiW
|