gpt4 book ai didi

string - bash 检查字符串是否包含空格

转载 作者:行者123 更新时间:2023-11-29 09:37:49 26 4
gpt4 key购买 nike

在我的 bash 脚本中,我想检查字符串中是否包含空格,以及它是否用 %20 替换字符串中的空格以将字符串解析为网站。

我是 bash 的新手,最好的方法是什么?

我知道如何在 C# 中做到这一点,但我发现 bash 有点不同。

最佳答案

请参阅 bash 手册中的“Shell 参数扩展”。

对于您的情况,假设有一个名为 x 的变量,

$ x="one two three"

$ echo $x
one two three

$ echo ${x// /%20}
one%20two%20three

(*编辑:链接到 gnu.org bash 手册)

关于string - bash 检查字符串是否包含空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34644550/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com