是 \bword\b 和 \ GREP 中的等价物以及 \<, \> 的用法是什么?
\bword\b
和 \
在 GREP 中是否等效以及 \<
、\> 的用法;
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为意义是一样的。但 \b 是 Perl 且 \< >是Unix。
了解更多详情。
I think the meaning is the same. But \b is Perl and \< > is Unix.
For more details.
唯一的区别是
\<
匹配单词开头的空字符串;\>
匹配单词末尾的空字符串;\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.