Ruby Regex:拒绝整个单词

前端之家收集整理的这篇文章主要介绍了Ruby Regex:拒绝整个单词前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道在 Regex中,你可以拒绝符号列表,例如[^ abc].在我输入的中间看到一个完整的单词时,我想拒绝.

更确切地说,我想拒绝“print<除了”all“>”之外的任何东西.
几个例子:

print all - match
frokenfooster - no match
print all nomnom - no match
print bollocks - no match
print allpies - no match

解决方法

你正在寻找 negative look-ahead.(参考文献 using look-ahead and look-behind)
(?!exclude)

会取消模式中“排除”一词的资格.

原文链接:https://www.f2er.com/ruby/269297.html

猜你在找的Ruby相关文章