使用 grep 捕获正则表达式

发布于 2024-11-14 21:36:41 字数 181 浏览 1 评论 0原文

我在输入中捕获如下文本时遇到问题:

"xy$"

grep -eo '([a-zA-Z]+)$'
grep -eo '([a-zA-Z]+)\$'
grep -eo '([a-zA-Z]+)\\$'

在这里所做的 $ 代表文字 $ 而不是行尾。
怎么了?

I have trouble capturing text like the following in input:

"xy$"

I did

grep -eo '([a-zA-Z]+)

here the $ represents the literal $ not end of line.
what's wrong?

grep -eo '([a-zA-Z]+)\

here the $ represents the literal $ not end of line.
what's wrong?

grep -eo '([a-zA-Z]+)\\

here the $ represents the literal $ not end of line.
what's wrong?

here the $ represents the literal $ not end of line.
what's wrong?

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

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

发布评论

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

评论(3

秋日私语 2024-11-21 21:36:41

您需要转义 $,因此它变成了文字

([a-zA-Z]+)\$

You need to escape $, so it becomes a literal

([a-zA-Z]+)\$
最终幸福 2024-11-21 21:36:41

尝试逃避$。 grep -eo '([a-ZA-Z+)\$

Try to escape the $. grep -eo '([a-ZA-Z+)\$

时光磨忆 2024-11-21 21:36:41

您需要使用 -E 选项打开扩展正则表达式:

grep -E '([a-ZA-Z]+)\

You need to turn on extended regexes with the -E option:

grep -E '([a-ZA-Z]+)\

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