在shell中查找字符串位置可以使用expr
命令結合index
函數來實現。以下是一個示例:
string="hello world"
substring="world"
position=$(expr index "$string" "$substring")
echo "Substring '$substring' found at position $position"
在這個示例中,string
是要查找的字符串,substring
是要查找的子字符串。expr index
命令會返回子字符串在字符串中第一次出現的位置。