Check that a string contains a substring in Bash

David Y.
jump to solution

The Problem

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 (=~):

string='Hello world!';

if [[ $string =~ "world" ]]; then
  echo "Found 'world' in string."
fi

Alternatively, we can use wildcard matching:

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:

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.

POST JSON data using cURL
David Y.
Sending Cookies with Curl
Naveera A.

Considered "not bad" by 4 million developers and more than 150,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.

Sentry