使用 POSIX 排除字符串中的单词

发布于 2024-12-11 20:42:22 字数 152 浏览 0 评论 0原文

是否可以仅使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安静被遗忘 2024-12-18 20:42:22
^([^t]|(t[^r])|(tr[^e])|(tre[^e]))*($|(t($|(r($|e$)))))
^([^t]|(t[^r])|(tr[^e])|(tre[^e]))*($|(t($|(r($|e$)))))
有木有妳兜一样 2024-12-18 20:42:22

有很多方法可以在不使用 Python 的情况下完成此操作。

假设您已将数据存储在文本文件中。这应该可以解决问题:

grep '\tree\>' textfile 

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:

grep '\tree\>' textfile 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文