Try:
Code:
Sub Add_CC_w_Title()
Dim oCC As Word.ContentControl
With ActiveDocument.Range
With .Find
.Text = "[!^13]@some*^13"
.Wrap = wdFindStop
.MatchWildcards = True
.Execute
End With
Do While .Find.Found
Set oCC = .ContentControls.Add(wdContentControlText, .Duplicate)
oCC.Title = "title"
.Collapse wdCollapseEnd
.Find.Execute
Loop
End With
End Sub