shell 判断字符串是否包含另一个字符串


1.使用grep

s1="helloworld"
s2="ello"
result=$(echo $s1 | grep "${s2}")
if [[ "$result" != "" ]]
then
    echo "$s1 include $s2"
else
    echo "$1 not include $s2"
fi

2. 使用操作符~

fileName=/home/sss/data/cl

if [[ $fileName =~cl ]]
then
    echo "$fileName include cl"
else
    echo "not include"
fi

3. 使用通配符*

A="helloworld"
B="low"
if [[ $A == *$B* ]]
then
    echo "包含"
else
    echo "不包含"
fi


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM