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.

Join the discussionCome work with us
Share on Twitter
Bookmark this page
Ask a questionImprove this Answer

Related Answers

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

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