shell 字符串拼接
时间: 2023-11-02 11:55:07 浏览: 196
字符串操作-shell脚本-从入门到精通
在 Shell 中,字符串拼接可以使用多种方式实现,以下是其中几种常见的方式:
1. 使用括号:
```shell
str1="hello,"
str2="world!"
str3=${str1}${str2}
echo ${str3} # 输出:hello,world!
```
2. 使用加号:
```shell
str1="hello,"
str2="world!"
str3=$str1$str2
echo ${str3} # 输出:hello,world!
```
3. 使用等号加花括号:
```shell
str1="hello,"
str2="world!"
str3=${str1}${str2}
echo ${str3} # 输出:hello,world!
```
4. 使用双引号:
```shell
str1="hello,"
str2="world!"
str3="$str1$str2"
echo ${str3} # 输出:hello,world!
```
需要注意的是,以上的字符串拼接方式中,如果字符串中包含空格或其他特殊字符,需要使用双引号或单引号括起来,否则可能会出现意想不到的问题。
阅读全文