分类:
2010-10-21 18:55:37
len=`expr length $str`
len=`echo $str|awk '{print length($0)}'`
# 判断变量是否为空
if [ -z ${A} ]; then
...
fi
# 得到字符串的长度
str="hello"
echo ${str} | wc -L
expr length "the string you want to get length!"
例如:输入命令:
expr length "abcd"
将得到结果 4
另外expr 还可以对字符串取substr ,index等,可以输入expr --help
查看详细用法
计算字符串长度可用的三种方法:
chinaunix网友2010-10-22 14:44:08
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com