How to write regex to verify a comma delimited list of values

后端 未结 4 1407
日久生厌
日久生厌 2021-01-03 02:32

I am using SobiPro, a directory system for joomla and I have a field that will have values that contain alphanumerics and hyphens only, so a sample of what might be in this

4条回答
  •  抹茶落季
    2021-01-03 03:08

    Try this:

    ^[-\w\s]+(?:,[-\w\s]*)*$
    

    Using ^ and $ ensures that we validate the entire value, and don't just find a match somewhere within.

    The first character class, [-\w\s]+ allows one or more alphanumeric, whitespace, or dash characters. The dash should go first in the class brackets.

    The second group allows zero or more repetitions with separating commas. It is wrapped in non-capturing parentheses, a small performance optimization: (?: … )*

    Notes:

    • This expression allows empty entries, such as A,B,,D. If you don't want to allow this, change the second-to-last * to a +.
    • The \w shorthand allows underscores. To prevent this, replace them with A-Za-z0-9.

提交回复
热议问题