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

使用grep

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

使用操作符~

fileName=/home/appblog/data/hk

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

使用通配符*

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

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/24/shell-determine-whether-a-string-contains-another-string/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Shell判断字符串是否包含另一个字符串
使用grep s1="abcdefg" s2="bcd" result=$(echo $s1 | grep "${s2}") if [[ "$result" != "" ]] then ……
<<上一篇
下一篇>>
文章目录
关闭
目 录