I have the following pattern that matches placeholders such as (%s, %16.6fAl, %d, etc.):
%([a-z]+)\b|%([a-z0-9\.]{2,20})\b
I do, however, need to ignore the following placeholders:
%w %1w %2w %3w %O %M
I've tried to look up and check the forum, but I'm afraid my regex knowledge is limited. Is there anyone out there that may have a solution?