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