Enclose 4 digit numbers in parentheses?

I want to add parentheses to years. Is this possible? They are not all in the same place in the names.
To enclose any 4-digit number in parenthesis...

Replace: (^|[^\d])(\d{4})($|[^\d])
with: (\2)
Use regular expressionS