摘要: 1. 取长度str="abcd"expr length $str # 4echo ${#str} # 4expr "$str" : ".*" # 4一般使用第二种比较多2. 查找子串的位置str="abc"expr index $str "a" # 1expr index $str "b" # 2expr index $str "x" # 0expr index $str "" # 0 3. 选取子串str="abcdef&q 阅读全文
posted @ 2012-10-18 15:29 Taskiller 阅读(389) 评论(0) 推荐(0) 编辑