shell获取字符串长度,字符串截取

shell 获取字符串的长度可以使用 # 或者使用expr计算

expr 不熟悉的可以查看这篇文章

获取字符串长度

#!/bin/bash
str="helloworld"
#打印str长度
echo ${#str}
#或者使用expr
expr length $str

打印结果为10

需要注意的地方就是str=“xxx” 字符串等号前面不要有空格。

字符串截取

#!/bin/bash
str="helloworld"
#字符串截取
echo ${str:0:4}
echo ${str:1:4}

打印结果

hell
ello
有点类似python 但是没有python 负数截取。注意这个是前后都包含的,

你可能感兴趣的:(linux,linux)