Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #bash #conditional #regex #match
ADD COMMENT
Topic
Name
3+7 =