This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub 删除换行及空格() | |
' | |
' 删除换行及空格 宏 | |
' 用于调整从PDF文件中复制出的文字格式 | |
' | |
Selection.Find.ClearFormatting | |
Selection.Find.Replacement.ClearFormatting | |
With Selection.Find | |
.Text = " " | |
.Replacement.Text = "" |
OlderNewer