I have a string abcdefgh
,
i want to check if the last two characters are alpha numeric/alphabets but not numeric
i.e. it can end in a1
, 1a
, aa
but not 11
are there any regex gurus who can chipin
The regex should return the below results for the strings
abcd - True abc1d - True abcd1 - True abc12 - false