SHELL 查找字符串中包含字符的命令

Posted 云刄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHELL 查找字符串中包含字符的命令相关的知识,希望对你有一定的参考价值。

1.通配符
string=‘My long string‘
if [[ $string == *"My long"* ]]; then
  echo "It‘s there!"
fi
2.正则匹配
string=‘My long string‘
if [[ $string =~ .*My.* ]]; then
   echo "It‘s there!"
fi

3.switch…case版本的通配符(速度最快……) string=‘My long string‘
case "$string" in
  *ERROR*)
  # Do stuff
  echo "包含ERROR..."
  ;;
  *ORA-*)
  echo "包含bbb..."
  return 1
  ;;
  *) #若以上都不符合,则给出交互式提示并退出。
  usage
  return 0
  ;;
esac
4.用grep来实现
string=‘My long string‘
if grep -q foo <<<$string; then
    echo "It‘s there"
fi
5.用字符串替换/删除来实现
string=‘My long string‘
if [ "$string" != "${string/foo/}" ]; then
    echo "It‘s there!"
fi

 

以上是关于SHELL 查找字符串中包含字符的命令的主要内容,如果未能解决你的问题,请参考以下文章

shell 变量中包含变量的问题

关于linux中字符串查找命令咨询

Linux主要shell命令详解(中)

shell的sed工具,如何删除一个文件中包含了特殊路径字符串的行? 例如文件file,里面有内容,

shell 变量名中包含变量怎么弄

SQL如何查找和删除MYSQL数据库中包含特定字符串的记录