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.
嗨,我正在尝试创建一个匹配以下条件的正则表达式: - 字符串必须有 6 个字符 - 模式必须是字母,然后是数字并重复(字母必须首先出现),例如:a1a1a1
任何帮助将不胜感激。谢谢你。
您可以使用反向引用来引用以前的捕获。这是一个示例正则表达式:
([a-z]\d)\1{2}
意思是“\1捕获组1”并且{2}意味着重复两次。捕获组 1 是括号中的部分,以字母 ( [a-z]) 开头,后跟数字 ( \d)。
\1
{2}
[a-z]
\d