如何从shell脚本中的字符串中获取特定字符串
我有下面的字符串,我想使用 shell 脚本从下面的字符串中获取 2563
。
请帮忙,如何获取request id
后面的号码
"requested producer access with request id 2563 to product exampledomain.test-dev.test.nonprod.com for user : test-user on product test-product-validation-required"
I've below string, I would like to get 2563
from the below string using shell script.
Could you please help, how to get the number which is after request id
"requested producer access with request id 2563 to product exampledomain.test-dev.test.nonprod.com for user : test-user on product test-product-validation-required"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设字符串存储在变量
$s
中。这是唯一的数字吗?然后
就可以工作了。
或者使用 Bash 正则表达式:
Assuming the string is stored in a variable
$s
.Is it the only number? Then
would work.
Or using a Bash regex:
您需要在字符串上使用
grep -oe'[0-9]*'
,例如:输出:
2563
You need to use
grep -oE '[0-9]*'
on string, like:Output:
2563