This is how it looks like in Perl-compatible regexp (taken from https://stackoverflow.com/a/4824952/377920):
(?:(?<!\d)\d{1,3}(?!\d))
However, apparently Javascript lacks some regexp features so this doesn't work.
I'm trying to match 1-3 long connected digits that can have non-white characters on both ends.
Such as "Road 12A55, 10020" would match 12 and 55.