用Word打開含空行的文章,依次單擊“工具” →“宏” →“Visual Basic編輯器”,打開Visual Basic編輯器。雙擊“Project”下的“ThisDocument”,打開“代碼”輸入窗口,將下面的代碼輸入進去,並保存。
代碼壹:
Sub DelBlank()
Dim i As Paragraph, n As Integer
Application.ScreenUpdating = False
For Each i In ActiveDocument.Paragraphs
If Len(i.Range) = 1 Then
i.Range.Delete
n = n + 1
End If
Next
MsgBox "***刪除空白段落" & n & "個"
Application.ScreenUpdating = True
End Sub
代碼輸入完畢,單擊“工具欄”中的“運行”按鈕,執行這段代碼。這時,會彈出壹個消息窗口,告訴妳壹***刪除了多少空行。
代碼二:
Sub 宏1()
Selection.WholeStory
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "(^13){1,}"
.Replacement.Text = "^13"
.MatchWildcards = True
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub