我是regex
的新手,这是我的问题:
以下是文件的内容:
cts-pdr/comment-primary/:not spamming
cts-pdr/comment-primary/:please remove since not spamming
cts-pdr/comment-primary/:not spamming
cts-pdr/comment-primary/:not spamming
cts-pdr/comment-primary/:Not spamming
cts-pdr/comment-primary/:not spamming
cts-pdr/comment-primary/:please unblock since not spaming
我在这里想要实现的是匹配冒号的第二部分。 我想捕获整个字符串,即:
(please\s.*)? [N|n]ot .*
我无法得到正确的比赛。 有人可以帮忙吗?
答案 0 :(得分:1)
您可以做的是将正则表达式更新为:
mabye使用非捕获组(?:
,如:
匹配please
或Not
或not
后跟任意字符零次或多次.*