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.
嗨,有人可以帮助我使用允许所有数字且仅字符 R、N、X、B 和特殊字符(如 @ 或 $)的正则表达式。
谢谢,露丝
你想要令牌[\dRNXB@$]。+如果需要匹配 1 次或多次,则添加到结尾,如果需要*匹配 0 次或多次,请添加到结尾。
[\dRNXB@$]
+
*
\d是特殊的并且匹配任何数字字符。确保如果您处于反斜杠用于转义序列(例如在字符串中)的上下文中,则将反斜杠加倍。
\d
http://regular-expressions.info/reference.html了解更多信息