如何判断一个字符串是否包含POSIX中的另一个字符串?

时间:2010-05-13 19:17:33

标签: shell unix

我想编写一个Unix shell脚本,如果另一个字符串中有一个字符串,它将执行各种逻辑。例如,如果我在某个文件夹中,请分支。有人可以告诉我如何做到这一点?如果可能的话,我想让这不是特定于shell的(即不仅仅是bash),但是如果没有别的方法我可以做到这一点。

#!/usr/bin/env sh

if [ "$PWD" contains "String1" ]
then
    echo "String1 present"
elif [ "$PWD" contains "String2" ]
then
    echo "String2 present"
else
    echo "Else"
fi

11 个答案:

答案 0 :(得分:140)

这是另一种解决方案。这使用POSIX substring parameter expansion,因此它适用于bash,dash,ksh ......

test "${string#*$word}" != "$string" && echo "$word found in $string"

编辑:这是一个好主意,C。罗斯。这是一个带有一些例子的功能化版本:

# contains(string, substring)
#
# Returns 0 if the specified string contains the specified substring,
# otherwise returns 1.
contains() {
    string="$1"
    substring="$2"
    if test "${string#*$substring}" != "$string"
    then
        return 0    # $substring is in $string
    else
        return 1    # $substring is not in $string
    fi
}

contains "abcd" "e" || echo "abcd does not contain e"
contains "abcd" "ab" && echo "abcd contains ab"
contains "abcd" "bc" && echo "abcd contains bc"
contains "abcd" "cd" && echo "abcd contains cd"
contains "abcd" "abcd" && echo "abcd contains abcd"
contains "" "" && echo "empty string contains empty string"
contains "a" "" && echo "a contains empty string"
contains "" "a" || echo "empty string does not contain a"
contains "abcd efgh" "cd ef" && echo "abcd efgh contains cd ef"
contains "abcd efgh" " " && echo "abcd efgh contains a space"

答案 1 :(得分:69)

Pure POSIX shell:

#!/bin/sh
CURRENT_DIR=`pwd`

case "$CURRENT_DIR" in
  *String1*) echo "String1 present" ;;
  *String2*) echo "String2 present" ;;
  *)         echo "else" ;;
esac

像ksh或bash这样的扩展shell有很好的匹配机制,但旧式case的功能非常强大。

答案 2 :(得分:37)

可悲的是,我不知道有什么方法可以做到这一点。但是,使用bash(从版本3.0.0开始,这可能就是你所拥有的),你可以像这样使用=〜运算符:

#!/bin/bash
CURRENT_DIR=`pwd`

if [[ "$CURRENT_DIR" =~ "String1" ]]
then
 echo "String1 present"
elif [[ "$CURRENT_DIR" =~ "String2" ]]
then
 echo "String2 present"
else
 echo "Else"
fi

作为一个额外的奖励(和/或警告,如果你的字符串中有任何有趣的字符),=〜如果你省略引号,则接受正则表达式作为正确的操作数。

答案 3 :(得分:24)

#!/usr/bin/env sh

# Searches a subset string in a string:
# 1st arg:reference string
# 2nd arg:subset string to be matched

if echo "$1" | grep -q "$2"
then
    echo "$2 is in $1"
else 
    echo "$2 is not in $1"
fi

答案 4 :(得分:15)

以下是您问题的各种解决方案的link

这是我最喜欢的,因为它具有最人性化的感觉:

星形通配符方法

Error parsing zone file: One resource cannot have multiple distinct TTL values

答案 5 :(得分:14)

case $(pwd) in
  *path) echo "ends with path";;
  path*) echo "starts with path";;
  *path*) echo "contains path";;
  *) echo "this is the default";;
esac

答案 6 :(得分:6)

bash regexps。或者有'expr':

 if expr "$link" : '/.*' > /dev/null; then
    PRG="$link"
  else
    PRG=`dirname "$PRG"`/"$link"
  fi

答案 7 :(得分:2)

请参阅“测试”程序的联机帮助页。 如果您只是测试目录的存在,通常会执行以下操作:

if test -d "String1"; then
  echo "String1 present"
end

如果您实际上尝试匹配字符串,则可以使用bash扩展规则&通配符也是:

if test -d "String*"; then
  echo "A directory starting with 'String' is present"
end

如果你需要做一些更复杂的事情,你需要使用另一个程序,比如expr。

答案 8 :(得分:2)

在您想要查找长文本中是否包含单词的特殊情况下,您可以循环遍历长文本。

found=F
query_word=this
long_string="many many words in this text"
for w in $long_string; do
    if [ "$w" = "$query_word" ]; then
          found=T
          break
    fi
done

这是纯粹的Bourne shell。

答案 9 :(得分:1)

multi part file request

- > output:String 1包含字符串2

答案 10 :(得分:1)

如果您想要一个与“test”一样快的 ksh 方法,您可以执行以下操作:

contains() # haystack needle
{
    haystack=${1/$2/}
    if [ ${#haystack} -ne ${#1} ] ; then
        return 1
    fi
    return 0
}

它的工作原理是删除大海捞针中的针,然后比较新旧草垛的字符串长度。