2011年7月4日 星期一

Manipulating Strings

bash下字串的操作

chars="12345678"
echo ${chars:2:3} #234
format: ${string:position:length}
position index從1開始
echo ${chars:2} #345678
從0開始算

reference:
http://tldp.org/LDP/abs/html/string-manipulation.html

沒有留言:

張貼留言