|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
不好意思,杜先生!你的代码无效,我的有效。
Sub 删除段落首尾空格()
'全选/居中/两端对齐
'[方法1]
' SendKeys "^(aej)", True
'[方法2]
' Selection.WholeStory
' Application.Run "CenterPara"
' Application.Run "LeftPara"
'[方法3]
' Selection.WholeStory
' CommandBars.FindControl(ID:=122).Execute
' CommandBars.FindControl(ID:=123).Execute
'[方法4]
'删除段落首尾空格(表格后须加空)
With ActiveDocument.Content.Find
.Execute "(^13)([ ^s^t]{1,})", , , 1, , , , , , "\1", 2
.Execute "([ ^s^t]{1,})(^13)", , , 1, , , , , , "\2", 2
End With
End Sub |
|