shell中计算字符串的长度
时间: 2023-10-12 17:04:48 浏览: 163
Shell脚本中计算字符串长度的5种方法
在shell中,可以使用`expr`命令来计算字符串的长度。示例代码如下:
```shell
string="Hello, world!"
length=$(expr length "$string")
echo "The length of the string is $length"
```
输出结果为:
```
The length of the string is 13
```
另外,也可以使用`bash`内置的`${#string}`语法来获取字符串的长度,示例代码如下:
```shell
string="Hello, world!"
length=${#string}
echo "The length of the string is $length"
```
输出结果与上述方法相同。
阅读全文