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

shell 字符串中定位字符位置 获取字符位置

时间:2016-01-01 09:27:37      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:

linux shell 字符串操作(长度,查找,替换)详解

该博文中描述的如下两个字符串操作,

技术分享
1 ${string:position}     #在$string中, 从位置$position开始提取子串
2 ${string:position:length}     #在$string中, 从位置$position开始提取长度为$length的子串 
View Code

需要用到字符/子串在父字符串中的位置(position);而shell字符串并未提供获取子串所在位置的接口,如果基于字符串变量的操作,则无法预知子串的位置;

Position of a string within a string using Linux shell script?

该文提到了一些解决方案,觉得有价值,转载如下:

If I have the text in a shell variable, say $a:

a="The cat sat on the mat"

How can I search for "cat" and return 4 using a Linux shell script, or -1 if not found?

1、

With bash

a="The cat sat on the mat"
b=cat
strindex() { 
  x="${1%%$2*}"
  [[ $x = $1 ]] && echo -1 || echo ${#x}
}
strindex "$a" "$b"   # prints 4
strindex "$a" foo    # prints -1
shareimprove this answer
2、

I used awk for this

a="The cat sat on the mat"
test="cat"
awk -v a="$a" -v b="$test" ‘BEGIN{print index(a,b)}‘
 
3、
echo $a | grep -bo cat | sed ‘s/:.*$//‘
4、

You can use grep to get the byte-offset of the matching part of a string:

echo $str | grep -b -o str

As per your example:

[user@host ~]$ echo "The cat sat on the mat" | grep -b -o cat
4:cat

you can pipe that to awk if you just want the first part

echo $str | grep -b -o str | awk ‘BEGIN {FS=":"}{print $1}‘
echo $str | grep -b -o "cat" | cut -d: -f1

I used awk for this

a="The cat sat on the mat"
test="cat"
awk -v a="$a" -v b="$test" ‘BEGIN{print index(a,b)}‘

shell 字符串中定位字符位置 获取字符位置

标签:

原文地址:http://www.cnblogs.com/stevensfollower/p/5093001.html

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