如何从shell脚本中的字符串中获取特定字符串

发布于 2025-01-18 05:04:56 字数 293 浏览 0 评论 0原文

我有下面的字符串,我想使用 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 技术交流群。

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

发布评论

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

评论(3

梦途 2025-01-25 05:04:56

假设字符串存储在变量 $s 中。

这是唯一的数字吗?然后

grep -Eo '[[:digit:]]+' <<< "$s"

就可以工作了。

或者使用 Bash 正则表达式:

re='request id ([[:digit:]]+)'
[[ $s =~ $re ]]
echo "${BASH_REMATCH[1]}"

Assuming the string is stored in a variable $s.

Is it the only number? Then

grep -Eo '[[:digit:]]+' <<< "$s"

would work.

Or using a Bash regex:

re='request id ([[:digit:]]+)'
[[ $s =~ $re ]]
echo "${BASH_REMATCH[1]}"
征棹 2025-01-25 05:04:56

您需要在字符串上使用grep -oe'[0-9]*',例如:

data="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"

echo $data | grep -oE '[0-9]*'

输出:
2563

You need to use grep -oE '[0-9]*' on string, like:

data="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"

echo $data | grep -oE '[0-9]*'

Output:
2563

过度放纵 2025-01-25 05:04:56
id=$(awk -F" id | to " '{gsub(/ /,"", $2); print $2}' <<<$string)
id=$(awk -F" id | to " '{gsub(/ /,"", $2); print $2}' <<<$string)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文