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.
我目前有这个正则表达式:
.*[a-z]$|.*[A-Z]$|.*[0-9]$
我需要将以下内容添加到现有的 -/:.#[]()
/:.#[]()
有谁知道该怎么做?
您不需要多个 OR 条件。只有一个并且还包括特殊字符:
[0-9A-Za-z\/#:.()\[\]]
根据您的评论,这应该为您做到:
^[a-zA-Z0-9/:.#\[\]()]+$
这将匹配仅包含您指定的字符的字符串。