bash if with regex code example

Example 1: bash conditional regex match

Just appreciate next solution example for your code implementation:
S=finding
if[[ "$S" == *ing ]]; then ...//some code run if string ends with 'ing'
More generally:
if[[ "string_to_check" == regex_patten ]]; then ...//some code

Example 2: using regex in bash conditional statement

pat="[0-9a-zA-Z ]"
if [[ $x =~ $pat ]]; then ...

Example 3: bash regex if condition

Use following structure:
if [[ $digit =~ [0-9] ]]; then //run if a digit included in $digit string
    echo "$digit is a digit"
else
    echo "oops"
fi