在Linux的shell脚本中,可以使用多种方法进行字符串拼接,包括: 使用括号和空格进行拼接: str1="Hello" str2="World" result="${str1} ${str2}" echo $result # 输出:Hello World 使用双引号进行拼接: str1="Hello" str2="World" result="$str1 $str2" echo $result # 输出:Hello World 使用连接运算符+进行拼接: str1="Hello" str2="World" result=$str1" "$str2 echo $result # 输出:Hello World 使用printf函数进行拼接: str1="Hello" str2="World" printf -v result "%s %s" $str1 $str2 echo $result # 输出:Hello World 无论使用哪种方法,都可以实现字符串的拼接。 本文地址:https://www.xunjs.com/linux/view_24578.html 版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处! Tags: Shell Linux 字符串