使用 grep 捕获正则表达式
我在输入中捕获如下文本时遇到问题:
"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.
grep -eo '([a-zA-Z]+)\
what's wrong?here the $ represents the literal $ not end of line.
grep -eo '([a-zA-Z]+)\\
what's wrong?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要转义
$
,因此它变成了文字You need to escape
$
, so it becomes a literal尝试逃避$。
grep -eo '([a-ZA-Z+)\$
Try to escape the $.
grep -eo '([a-ZA-Z+)\$
您需要使用
-E
选项打开扩展正则表达式:You need to turn on extended regexes with the
-E
option: