要使用shell正則表達式來匹配字符串,可以使用以下方法:
使用grep命令:
echo "hello world" | grep "hello"
輸出:
hello world
使用expr命令:
string="hello world"
expr "$string" : 'hello'
輸出:
hello
使用[[ ]]表達式:
string="hello world"
if [[ $string =~ "hello" ]]; then
echo "匹配成功"
fi
輸出:
匹配成功
使用case語句:
string="hello world"
case "$string" in
*hello*) echo "匹配成功";;
esac
輸出:
匹配成功
這些方法都可以用來匹配字符串,具體使用哪種方法取決于你的需求和上下文。