Sentry Answers>Bash>

Check that a string contains a substring in Bash

Check that a string contains a substring in Bash

David Y.

The ProblemJump To Solution

How can I check whether a string contains a substring using a Bash script?

The Solution

We can do this in two ways. First, we can use Bash’s regular expression matching operator (=~):

Click to Copy
string='Hello world!'; if [[ $string =~ "world" ]]; then echo "Found 'world' in string." fi

Alternatively, we can use wildcard matching:

Click to Copy
string='Hello world!' if [[ $string == *"world"* ]]; then echo "Found 'world' in string." fi

While either method will work equally well for this simple case, the regular expression method is more powerful, as we can replace “world” with any regular expression. For example, the code below uses the same regular expression to check the string for an exclamation point or a question mark:

Click to Copy
exclamation='Hello world!'; question='Hello world?'; if [[ $exclamation =~ !|\? ]]; then echo "The string matches!" fi if [[ $question =~ !|\? ]]; then echo "The string matches!" fi

You can learn more about how to use regular expressions at Regular-Expressions.info.

  • ResourcesWhat is Distributed Tracing
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty Treats for Web Developers brought to you by Sentry. Web development tips and tricks hosted by Wes Bos and Scott Tolinski

    Listen to Syntax

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.