是 \bword\b 和 \ GREP 中的等价物以及 \<, \> 的用法是什么?

发布于 2024-11-25 05:15:13 字数 120 浏览 1 评论 0 原文

\bword\b\ 在 GREP 中是否等效以及 \<\> 的用法; ?

Is \bword\b and \<word\> equivalent in GREP and what usage of \<, \> ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

属性 2024-12-02 05:15:13

我认为意义是一样的。但 \b 是 Perl 且 \< >是Unix。
了解更多详情

I think the meaning is the same. But \b is Perl and \< > is Unix.
For more details.

梦醒时光 2024-12-02 05:15:13

唯一的区别是

  • \< 匹配单词开头的空字符串;
  • \> 匹配单词末尾的空字符串;
  • \b 匹配单词开头和结尾处的空字符串。

好吧,我敢打赌这对您来说不是什么新闻:)但这是唯一的区别,因此您可以使用这些运算符中的任何一个。我含糊地建议 \<\> 更具可读性,但这更多的是一个品味问题。

The only difference is that

  • \< matches the empty string at the beginning of the word;
  • \> matches the empty string at the end of the word;
  • \b matches the empty string at both the beginning and the end of the word.

Well, I bet this is not news for you :) but this is the only difference so you can any of these operators. I would vaguely suggest that \< and \> are a bit more readable, but it is more a taste question than anything else.

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