Check that a string contains a substring in Bash

David Y.

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.

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.

Share on Twitter
Bookmark this page
Ask a questionJoin the discussion

Related Answers

A better experience for your users. An easier life for your developers.

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