Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

13 Answers

up vote 334 down vote accepted

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

needle='y s'
if [[ "$string" == *"$needle"* ]]; then
  echo "haystack '$string' contains needle '$needle'"
fi

... always quote strings to allow for whitespace

share|improve this answer
5  
Also note that you can reverse the comparison by just switching to != in the test. Thanks for the answer! – Quinn Taylor Jul 30 '09 at 17:14
Hmm, with this exact code, I get [[: not found. Any idea what's wrong? I'm using GNU bash, version 4.1.5(1), on Ubuntu. – Jonik Nov 16 '10 at 11:20
14  
@Jonik: You may be missing the shebang or have it as #!/bin/sh. Try #!/bin/bash instead. – Dennis Williamson Dec 17 '10 at 5:18
+1 for your answer. Thanks. I was looking at some code which uses this syntax. Though I guessed at the intention now I've got confirmation. Tried the bash scripting guide and google for quite some time but couldn't find what I wanted until I saw your answer. Can you give a link to such uses of strings and wildcard matching? Thanks!! – GuruM Sep 7 '11 at 10:37
1  
Leave a space between the brackets and the contents. – Paul Price Jan 22 at 16:43
show 3 more comments

If you prefer the regex approach:

string='My string';

if [[ $string =~ .*My.* ]]
then
   echo "It's there!"
fi
share|improve this answer
   
Had to replace an egrep regex in a bash script, this worked perfectly! – blast_hardcheese Feb 14 '12 at 5:10
If I need space, it not work, how do this? – Rodrigo May 15 '12 at 3:22
2  
If you need a space, escape it with a backslash: [[ $string =~ My\ s ]] – Matt Tardiff Jun 7 '12 at 22:53

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
share|improve this answer

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.

share|improve this answer
3  
This is a twisted way of solving the problem, but it's a nice technique to know. – Sebastien Jun 18 '12 at 12:43

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).

share|improve this answer
4  
they are called here strings (3.6.7) I believe it is bashism – alex.pilon Oct 20 '11 at 17:03
1  
one can also use Process Substitution if grep -q foo <(echo somefoothing); then – larsr Dec 19 '11 at 12:45
impressive...!! – user677656 Feb 22 '12 at 19:07

ephemient's solution above:

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

is useful when using BusyBox's shell ash. The accepted solution does not work with BusyBox because some bash's regular expressions are not implemented.

share|improve this answer

How about this:

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

Regards, Stefan

share|improve this answer
=~ is for regexp matching, hence too powerful for the OP's purpose. – Georgi Kirilov Feb 9 '09 at 6:37

Try oobash it is an OO-style string library for bash 4. It has support for German umlauts. It is written in bash. Many functions are available: -base64Decode, -base64Encode, -capitalize, -center, -charAt, -concat, -contains, -count, -endsWith, -equals, -equalsIgnoreCase, -reverse, -hashCode, -indexOf, -isAlnum, -isAlpha, -isAscii, -isDigit, -isEmpty, -isHexDigit, -isLowerCase, -isSpace, -isPrintable, -isUpperCase, -isVisible, -lastIndexOf, -length, -matches, -replaceAll, -replaceFirst, -startsWith, -substring, -swapCase, -toLowerCase, -toString, -toUpperCase, -trim, and -zfill.

Look at the contains example:

[Desktop]$ String a testXccc                                                  
[Desktop]$ a.contains tX                   
true                                                           
[Desktop]$ a.contains XtX      
false      

oobash is available at Sourceforge.net.

share|improve this answer

This also works:

if echo "$haystack" | egrep -q "$needle" ; then
  echo "Found needle in haystack"
fi

And the negative test is:

if ! echo "$haystack" | egrep -q "$needle" ; then
  echo "Did not find needle in haystack"
fi

I suppose this style is a bit more classic -- less dependent upon features of Bash shell.

share|improve this answer
The OP is clearly tagged with bash. – gniourf_gniourf Dec 1 '12 at 15:46

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

share|improve this answer

I found to need this functionality quite frequently, so I'm using a home-made shell function in my .bashrc like this which allows me to re-use it as often as I need to, with an easy to remember name:

function stringinstring()
{
    case x"$2" in 
       x*${1}*)
          return 0
       ;;
    esac   
    return 1
}

To test if $string1 (say, abc) is contained in $string2 (say, 123abcABC) I just need to run stringinstring "$string1" "$string2" and check for the return value, for example

stringinstring "$str1" "$str2"  &&  echo YES  ||  echo NO
share|improve this answer
[[ "$str" == $substr ]] && echo YES || echo NO – elyase Dec 11 '12 at 21:34

I like this:

string=`echo My string`
for substr in My Your 'y s' 'a s' 'y a';do
    if ! [ -z "$string" ] && [ -z "${string//*$substr*}" ] ;then
        echo "Substring '$substr' is there! "
    fi
done

Substring 'My' is there! 
Substring 'y s' is there! 
share|improve this answer

here comes one:

[ $(expr $mystring : ".*${search}.*") -ne 0 ] && echo 'yes' ||  echo 'no' 
share|improve this answer
Why the downvotes? What's wrong with using expr? – mogsie Nov 27 '12 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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