Skip to content

How to check if a string contains a substring in Bash

#!/bin/bash

STR='Poopcode'
SUB='Poop'

if [[ "$STR" =~ .*"$SUB".* ]]; then
  echo "true"
fi
See also  SDK location not found. Define location with an ANDROID_SDK_ROOT environment variable or by setting the sdk.dir path in your project's local properties file at - react native error. How to fix ?
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.