shell怎么查找字符串位置

avatar
作者
猴君
阅读量:1

在shell中查找字符串位置可以使用expr命令结合index函数来实现。以下是一个示例:

string="hello world" substring="world"  position=$(expr index "$string" "$substring") echo "Substring '$substring' found at position $position" 

在这个示例中,string是要查找的字符串,substring是要查找的子字符串。expr index命令会返回子字符串在字符串中第一次出现的位置。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!