I'd like to write a regular expression that checks that a line is:
The items in the delimited list need not be alphanumeric. Some will have special characters. Also, some items may be absent, so there is no assurance that there will be something between delimiters.
I'm a newb to regexp so if your answer involves anything extra clever/advanced please explain
Thanks much
/^[^,]*(?:,[^,]*){9,}$/