A family of Microsoft word processing software products for creating web, email, and print documents.
Here's a simpler approach that doesn't require you to know anything about the index entries:
Application.ScreenUpdating = False
Dim i As Long, Rng As Range, StrTxt As String
With ActiveDocument
For i = .Fields.Count To 1 Step -1
With .Fields(i)
If .Type = wdFieldIndexEntry Then
Set Rng = .Code: StrTxt = Split(.Code.Text, Chr(34))(1)
With Rng
Do While .Characters.First <> Chr(19): .Start = .Start - 1: Loop
End With
.Delete: Rng.Text = "\index{" & StrTxt & "}"
End If
End With
Next
End With
Application.ScreenUpdating = True
End Sub