使用 expr string : 正则表达式来剪切字符串

发布于 2024-12-10 12:53:09 字数 175 浏览 2 评论 0原文

有一个长字符串,包含空格分隔的单词,其中一个以 $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 技术交流群。

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

发布评论

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

评论(3

你げ笑在眉眼 2024-12-17 12:53:09

.* 是贪婪的 - 它匹配尽可能多的字符。将其更改为.*?使其匹配尽可能少:

.*?([^ ]+x).*?

.* is greedy - it matches as many characters as it can. Change it to .*? to make it match as few as it can:

.*?([^ ]+x).*?
冰火雁神 2024-12-17 12:53:09

您可以尝试以下正则表达式:[^\s]+x\b

You can try the following regex: [^\s]+x\b

娇柔作态 2024-12-17 12:53:09
kent$  echo "abc aac bbcx"|grep -Po "[^\s]+(?=x)"                                                                                        
bbc

如果您也需要“x”:您提到过

其中一个以 $somevar 结尾

kent$  echo "abc aac bbcx"|grep -Po "[^\s]+x(?=\s|$)"
bbcx

kent$  echo "abc aacx bbc"|grep -Po "[^\s]+x(?=\s|$)"
aacx
kent$  echo "abc aac bbcx"|grep -Po "[^\s]+(?=x)"                                                                                        
bbc

if you need the 'x' too: and you mentioned

one of them ends with $somevar

kent$  echo "abc aac bbcx"|grep -Po "[^\s]+x(?=\s|$)"
bbcx

kent$  echo "abc aacx bbc"|grep -Po "[^\s]+x(?=\s|$)"
aacx
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文