正则表达式
我是新手到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 .*
我不能得到正确的匹配。 任何人都可以帮忙吗?
回答:
你可以做的是更新您的正则表达式:
(please|[N|n]ot).*
而且mabye使用非捕获组(?:
,如:
(?:please|[N|n]ot).*
这将匹配please
或Not
或not
后跟任意字符零次或多次.*
以上是 正则表达式 的全部内容, 来源链接: utcz.com/qa/265649.html