码迷,mamicode.com
首页 > 系统相关 > 详细

shell字符串索引

时间:2017-02-01 20:43:58      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:rom   substr   dex   expr   alt   ring   png   style   字符   

shell中的字符串索引一会从0开始,一会从1开始,见例子:

#!/bin/bash

string="hello world"
length=${#string}
echo "string is \""$string"\""
echo "length is $length"

index=`expr index "$string" o`
echo "index of ‘o‘ is $index"

substring=${string:$index}
echo "substring begins from index $index is \""$substring"\""
echo "shit happens"
echo

exit 0

输出如下:

技术分享

shell字符串索引

标签:rom   substr   dex   expr   alt   ring   png   style   字符   

原文地址:http://www.cnblogs.com/gattaca/p/6360278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!