How to regex match words that have digits or any non-characters inside words, excluding when digits and non-characters (\/°†@*()'\s+&;±|-\^
) are at the end of word? I need to match dAS2a
but not dASI6
. Could not adapt the Regex to match string not ending with pattern solution.
dA/Sa
dAS2a
dASI/
dASI6
http://regex101.com/r/qM4dV7/1 failed.