Sub הסר־ניקוד־וטעמים()
'
' הסר־ניקוד־וטעמים Macro
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = ChrW(1470)
.Replacement.Text = " "
.Forward = True
.Wrap = wdFindStop
End With
Selection.Find.Execute Replace:=wdReplaceAll

Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
Dim n As Integer
n = 1425
Do Until n > 1479
With Selection.Find
.Text = ChrW(n)
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindStop
End With
Selection.Find.Execute Replace:=wdReplaceAll
n = n + 1
Loop
End Sub