Sure. But that is not as much fun ;-)
Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "(Answer) ([A-D]{1})"
.MatchWildcards = True
.Replacement.Text = "\1 (\2)"
.Execute Replace:=wdReplaceAll
End With
End Sub