I want to validate that the user has entered a comma separated list of words only using regex, will this work/is there a better way:
$match = \"#^([^0-9 A-z
I suggest, if you want to test regular expressions, to use kiki.
About your regex: it won't work because of unmatched parentheses. Some more things to take into account:
Besides, what's the point of validating whether or not this is a comma-seperated list?