此问题在此处已有答案:
Regexp to fit all string NOT ending with a LIST of known suffixes (not characters, but words)(2个答案)
26天前关闭
如何编写一个Java正则表达式来匹配不以abc
,def
,ot ghi
这三种结尾中的任何一种结尾的行?
例如,以下情况应如下所示工作:
1234abc -- not valid (ends with 'abc')
09mno -- valid
ef -- valid
def -- not valid (ends with 'def')
hello -- valid
helloghi -- not valid (ends with 'ghi')
longertext -- valid
字符串
1条答案
按热度按时间s6fujrry1#
我在regex101.com上玩了一下,得出了这个结论:
字符串
编辑25.10.2023在末尾添加了
.+$
,以不匹配空字符串型