Code:
Sub Demo()
Dim oRng As Range
Set oRng = ActiveDocument.Range
With oRng.Find
.ClearFormatting
.Text = "(^0147)([A-Z]*)([^0148])"
.MatchWildcards = True
While .Execute
oRng.Start = oRng.Start + 1
oRng.End = oRng.End - 1
oRng.Style = ActiveDocument.Styles("Strong") 'replace with your style
oRng.Collapse wdCollapseEnd
Wend
End With
lbl_Exit:
Exit Sub
End Sub