Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #bash #regex #condition
ADD COMMENT
Topic
Name
2+1 =