Answers for "check if word at end of string regex bash"

0

check if word at end of string regex bash

Just appreciate next solution example for your code implementation:
S=finding
if[[ "$S" == *ing ]]; then ...//some code
More generally:
if[[ "string_to_check" == regex_patten ]]; then ...//some code
Posted by: Guest on November-03-2020

Code answers related to "check if word at end of string regex bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language