How can I check whether a string contains a substring using a Bash script?
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.