在2级标题段的最后加句号(word 宏编写问题)
发布网友
发布时间:2022-04-23 02:57
我来回答
共1个回答
热心网友
时间:2023-10-12 13:38
Dim p As Paragraph '
For Each p In ActiveDocument.Paragraphs
If p.Style = "标题2" Then p.Range.Text = Left(p.Range.Text, Len(p.Range.Text) - 1) & "。" & Chr(13)
Next
End Sub