我正在搜索表单的字符串模式:
XXXAXXX
# exactly 3 Xs, followed by a non-X, followed by 3Xs
所有X必须是相同的字符,A不能是X.
注意:我不明确搜索X和As - 我只需要找到这种字符模式。
是否可以使用正则表达式构建它?如果重要的话,我将用Python实现搜索。
提前致谢! -CS
更新
@ rohit-jain在Python中的答案
x = re.search(r"(\w)\1{2}(?:(?!\1)\w)\1{3}", data_str)
@jerry在Python中的回答
x = re.search(r"(.)\1{2}(?!\1).\1{3}", data_str)
答案 0 :(得分:8)
你可以试试这个:
(\w)\1{2}(?!\1)\w\1{3}
分手:
(\w) # Match a word character and capture in group 1
\1{2} # Match group 1 twice, to make the same character thrice - `XXX`
(?!\1) # Make sure the character in group 1 is not ahead. (X is not ahead)
\w # Then match a word character. This is `A`
\1{3} # Match the group 1 thrice - XXX
答案 1 :(得分:4)
你可以使用这个正则表达式:
(.)\1{2}(?!\1).\1{3}
第一个点匹配任何一个角色,然后我们再回调两次,使用负向前瞻以确保前方没有捕获的角色并再次使用另一个点来接受任何角色,然后再进行3次回调。