求字符串操作在shell脚本中很常用,下面归纳、汇总了求字符串的几种可能方法:
[mkx@localhost testdir]$ stringZ=abcABC123ABCabc [mkx@localhost testdir]$ echo ${#stringZ} 15
[mkx@localhost testdir]$ echo ${stringZ} | awk '{print length($0)}' 15
备注:
1) 最好用{}来放置变量
[mkx@localhost testdir]$ awk '{ print length($0) }' /etc/passwd 31 32 39 36
[mkx@localhost testdir]$ echo $stringZ | awk -F "" '{print NF}' 15 备注: -F为分隔符,NF为域的个数,即单行字符串的长度
[mkx@localhost testdir]$ echo ${stringZ} | wc -L 15 [mkx@localhost testdir]$ cat /etc/passwd |wc -L 99
备注: -L参数
1) 对多行文件来说,表示打印最长行的长度! 99,表示/etc/passwd文件最长行的长度为99
2) 对单行字符串而言,表示当前行字符串的长度!
【方法五】:利用wc的-l参数,结合echo -n参数
[mkx@localhost testdir]$ echo -n "ABCDEF" | wc -c 6
备注:
1) -c参数: 统计字符的个数
2) -n参数: 去除”\n”换行符,不去除的话,默认带换行符,字符个数就成了7
[mkx@localhost testdir]$ expr length ${stringZ} 15
【方法七】:利用expr的$str : “.*”技巧
[mkx@localhost testdir]$ expr $stringZ : ".*" 15
备注: .*代表任意字符,即用任意字符来匹配字符串,结果是匹配到15个,即字符串的长度为15
原文链接:https://www.f2er.com/bash/389160.html