使用 POSIX 排除字符串中的单词
是否可以仅使用 POSIX 正则表达式来保证单词不会出现在字符串中?
我的意思是,如果我只想拥有没有“树”的单词:
它应该告诉我“我喜欢海龟”匹配。
另一方面,它不应该匹配“The man is on the tree”
谢谢
Is it possible to use ONLY POSIX regular expressions to guarantee that a word does not appear inside a string??
I mean that, if i wanted to have only words that dont have "tree":
It should tell me that "I like turtles" matches.
On the other hand, it should not match "The man is on the tree"
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多方法可以在不使用 Python 的情况下完成此操作。
假设您已将数据存储在文本文件中。这应该可以解决问题:
There are many ways to do it without using Python.
Lets assume that you have stored your data in a textfile. This should do the trick: