字符串包含关系判断
Posted t-road
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串包含关系判断相关的知识,希望对你有一定的参考价值。
1、利用grep查找
str1="ABC"
str2="A"
result=$(echo $str1 | grep "${str2}")
if [[ "$result" != "" ]];then
echo "包含"
else
echo "不包含"
fi
2、利用字符串运算符
str1="hellow"
str2="low"
if [[ $str1 =~ $str2 ]];then
echo "包含"
else
echo "不包含"
fi
3、利用通配符
str1="hellow"
str2="low"
if [[ $str1 == *$str2* ]];then
echo "包含"
else
echo "不包含"
fi
以上是关于字符串包含关系判断的主要内容,如果未能解决你的问题,请参考以下文章