I am trying to make a regex that matches all sub strings under or equal to 2 characters with a space on ether side. What did I do wrong?
ex what I want to do is have it match %2
or q
but not 123
and not the spaces.
update this \b\w{2}\b
if it also matched one letter sub strings and did not ignore special characters like - or #.