shell拼接字符串
在shell脚本中,可以使用不同的方法拼接字符串:
- 使用变量拼接:
#!/bin/bash
str1="Hello"
str2="World"
result="${str1} ${str2}"
echo ${result}
输出结果为:Hello World
- 使用连接符拼接:
#!/bin/bash
str1="Hello"
str2="World"
result=$str1" "$str2
echo ${result}
输出结果为:Hello World
- 使用单引号或双引号拼接:
#!/bin/bash
str1="Hello"
str2="World"
result='$str1 $str2'
echo ${result}
输出结果为:$str1 $str2
#!/bin/bash
str1="Hello"
str2="World"
result="$str1 $str2"
echo ${result}
输出结果为:Hello World
- 使用括号拼接:
#!/bin/bash
str1="Hello"
str2="World"
result=${str1}${str2}
echo ${result}
输出结果为:HelloWorld
无论使用哪种方法,都可以实现字符串的拼接。根据实际需求选择最合适的方法
原文地址: https://www.cveoy.top/t/topic/iQOw 著作权归作者所有。请勿转载和采集!