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.
假设我有字符串
1122345
此字符串中有两对。计算这个字符串中的对的正则表达式是什么?
试试这个:
^(\d)\1*$ 或试试这个 ^([0-9])\1*$
请根据您的问题修改上述正则表达式。如果用户输入相同的数字,则模式匹配。\1 匹配第一个捕获组,因此该模式匹配数字是否在字符串中重复。