regex find two letters and numbers code example
Example 1: get everything between two characters regex
(?<=\[)(.*?)(?=\])
Example 2: regex match numbers and special characters
echo %H1E2L+L#O! | sed 's/[^A-Z!]//g' #replaces number and special
characters which aren't ! or an uppercase letter A-Z