方法一:
[[email protected] ~]# name="rural handsome"
[[email protected] ~]# echo ${#name} <==“${#parameter}”获取变量长度
14
方法二:-L(--max-line-length)最大行的长度
[[email protected] ~]# echo ${name}|wc -L
14
方法三:
[[email protected] scripts]# echo ${name}|awk -F "" ‘{print NF}‘
14
#<==“NF”表示最后一行,$NF表示最后一行参数,NF是变量名,$NF变量
方法4: awk编程的length函数,length(变量)
[[email protected] scripts]# echo $name|awk ‘{print length($0)}‘
14
方法5:
[[email protected] scripts]# expr length "$name" #<== expr命令length指令,变量必须加双引号
14
方法6:
[[email protected] oldboy]# expr sasdfasfasfdasfd : ".*"
16
原文地址:http://blog.51cto.com/12034076/2120410
时间: 2024-10-05 04:44:51