正则的进阶表达——找出(不)包含特定字符串
发布时间:2020-12-14 06:10:50 所属栏目:百科 来源:网络整理
导读:主要运用正则语法中的(积极/消极)前瞻、后顾方法,以匹配或排除特定的字符串。 可简洁明了的如下表达,以便于理解: (?!behind) regexp (?=ahead) ? 相关语法介绍: (积极)前瞻: (?=ahead) Asserts that the given subpattern can be matched here,withou
主要运用正则语法中的(积极/消极)前瞻、后顾方法,以匹配或排除特定的字符串。 可简洁明了的如下表达,以便于理解: (?<!behind)regexp(?=ahead) ? 相关语法介绍:(积极)前瞻:(?=ahead)
Asserts that the given subpattern can be matched here,without consuming characters
/foo(?=bar)/ foobar foobaz
?
?
(消极)后顾:
(?<!behind)
(?<!...)
Ensures that the given pattern would not match and end at the current position in the expression. The pattern must have a fixed width. Does not consume characters.
/(?<!not )foo/ not foo but foo
?
?
参考资料:
java正则表达式找出不包含特定字符串在线测试:https://regex101.com/ (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |