例如,如果我有3个单词:
throw
growing
plows
我想要的东西只返回没有' ow'最后:
growing
plows
基本上恰恰相反:
/ow$/
所以它只会在' ow'不会出现在最后。
答案 0 :(得分:1)
答案 1 :(得分:1)
使用否定前瞻。
^(?!.*ow$).+
答案 2 :(得分:0)
Python代码:
lst = ["throw","growing","plows"]
for item in lst:
if not str.endswith(item.lower(), "ow"):
print item
答案 3 :(得分:0)