正则表达式:检查`abc`然后检查`def`而不用`123`
发布时间:2020-12-14 05:37:18 所属栏目:百科 来源:网络整理
导读:如何使用 Regex查找以abc开头的每个字符串,以def结尾,但两者之间不包含123? 解决方法 你可以在这里使用否定前瞻. ^abc(?:(?!123).)*def$ 正则表达式 ^ # the beginning of the stringabc # 'abc'(?: # group,but do not capture (0 or more times) (?! # lo
如何使用
Regex查找以abc开头的每个字符串,以def结尾,但两者之间不包含123?
解决方法
你可以在这里使用否定前瞻.
^abc(?:(?!123).)*def$ 正则表达式 ^ # the beginning of the string abc # 'abc' (?: # group,but do not capture (0 or more times) (?! # look ahead to see if there is not: 123 # '123' ) # end of look-ahead . # any character except n )* # end of grouping def # 'def' $ # before an optional n,and the end of the string (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |