vote up 11 vote down star
3

Using bash, I have a string:

string=`echo My string`

How can I test if it contains another string?

if [ $string ?? 'foo' ] then;
  echo "It's there!";
fi;

Where ?? is my unknown operator. Do I use echo and grep?

if [ `echo $string || grep 'foo' ` ] then;
  echo "It's there!";
fi;

That looks a bit clumsy.

flag

8 Answers

vote up 14 vote down check

You can use Marcus's answer (* wildcards) outside a case statement, too, if you use double brackets:

string='My string';

if [[ $string == *My* ]]
then
  echo "It's there!";
fi
link|flag
Also note that you can reverse the comparison by just switching to != in the test. Thanks for the answer! – Quinn Taylor Jul 30 at 17:14
vote up 0 vote down

How about this:

text="   <tag>bmnmn</tag>  "
if [[ "$text" =~ "<tag>" ]]; then
   echo "matched"
else
   echo "not matched"
fi

Regards, Stefan

link|flag
=~ is for regexp matching, hence too powerful for the OP's purpose. – Georgi Kirilov Feb 9 at 6:37
vote up 0 vote down

grep -q is useful for this purpose, thanks.

The same using awk


$ string="unix-bash 2389"
$ character="@"

$ echo $string | awk -vc="$character" '{if(gsub(c,"")) print "Found";else print "Not Found"}'

Not Found

$ character="-"

$ echo $string | awk -vc="$character" '{if(gsub(c,"")) print "Found";else print "Not Found"}'

Found

http://unstableme.blogspot.com/2008/06/bash-search-letter-in-string-awk.html

// Jadu Saikia

link|flag
vote up 0 vote down

I'd use grep, and not use the [ command, just do

if grep -q foo <<<$string; then
    echo "It's there"
fi

The -q option makes grep not output anything, as we only want the return code. <<< makes the shell expand the next word and use it as the input to the command, a one-line version of the << here document (I'm not sure whether this is standard or a bashism).

link|flag
vote up 2 vote down

If you prefer the regex approach:

string='My string';

if [[ $string =~ .*My.* ]]
then
   echo "It's there!"
fi
link|flag
vote up 0 vote down

The accepted answer is best, but since there's more than one way to do it, here's another solution:

if [ "$string" != "${string/foo/}" ]; then
    echo "It's there!"
fi

${var/search/replace} is $var with the first instance of search replaced by replace, if it's found (it doesn't change $var). If you try to replace foo by nothing, and the string has changed, then obviously foo was found.

link|flag
vote up 0 vote down

The other way is expr match or its shortened version:

str=this_is_my_string
if [ `expr match "$str" ".*my.*"` != "0" ]; then
  echo "there";
fi;

However, this is using regular expressions, not a substring match.

The shortened version is

expr "$variable" : 'regex'
link|flag
vote up 4 vote down

I am not sure about using an if statement, but you can get a similar effect with a case statement:

case "$string" in 
  *foo*)
    # Do stuff
    ;;
esac
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.