Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想写一个正则表达式来检查一行是否是:
分隔列表中的项目不必是字母数字。有些会有特殊字符。此外,某些项目可能不存在,因此无法保证分隔符之间会有某些内容。
我是正则表达式的新手,所以如果您的答案涉及任何额外聪明/高级的内容,请解释
非常感谢
/^[^,]*(?:,[^,]*){9,}$/