使用 expr string : 正则表达式来剪切字符串
有一个长字符串,包含空格分隔的单词,其中一个以 $somevar 结尾。 简单的版本是(x is $somevar):
expr "abc aac bbcx" : '.*\([^ ]\+x\).*'
问题是,它只返回“cx”。它应该返回“bbcx”。这里出了什么问题?
Theres a long string, containing space delimited words, one of them ends with $somevar.
Simple version is (x is $somevar):
expr "abc aac bbcx" : '.*\([^ ]\+x\).*'
The problem is, it only returns "cx". It should return "bbcx". Whats wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.* 是贪婪的 - 它匹配尽可能多的字符。将其更改为.*?使其匹配尽可能少:
.* is greedy - it matches as many characters as it can. Change it to .*? to make it match as few as it can:
您可以尝试以下正则表达式:
[^\s]+x\b
You can try the following regex:
[^\s]+x\b
如果您也需要“x”:您提到过
if you need the 'x' too: and you mentioned