I am trying to figure out how to find numbers that are not years (I'm defining a year as simply a number that is four digits wide.)
For example, I want to pick up
1
12
123
But NOT
1234
in order to avoid dates (4 digits).
if the regex also picked up 12345
that is fine, but not necessary for solving this problem
(Note: these requirements may seem odd. They are part of a larger solution that I am stuck with)