首页 > 系统服务 > 详细

Shell脚本之:字符串

时间:2015-07-25 22:53:23      阅读:274      评论:0      收藏:0      [点我收藏+]

字符串可以用单引号,也可以用双引号,也可以不用引号。

 

单引号

str=this is a string

单引号字符串的限制:

1.单引号里的任何字符都会原样输出,单引号字符串中的变量是无效的;

2.单引号字串中不能出现单引号(对单引号使用转义符后也不行)。

 

双引号

name=runnyu
str="Hello, ${name} \n"

双引号的优点:

1.双引号里可以有变量

2.双引号里可以出现转义字符

 

获取字符串长度

string="abcd"
echo ${#string} #输出 4

 

 

提取字字符串

string="hello world"
echo ${string:1:4} #  ${string:index:length}

 

 

查找子字符串

string="hello world"
echo `expr index "$string" world`   #   `expr index "$string" substring`

 

Shell脚本之:字符串

原文:http://www.cnblogs.com/runnyu/p/4676627.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!