作者:绿色风
分类:
时间:2022-08-18
浏览:102
楼主 kevinchengcw |
Q: 如何用宏将word文档中的数字分成空格间隔的三位一节? A: 代码如下(只处理整数部分):- Sub test()
- Dim Str$, Str2$, mMatch, Matches
- With CreateObject("vbscript.regexp") '创建正则项目用于提取数字
- .Global = True '全局有效
- .Pattern = "(?!\.)(.*)\d{3}" '设定规则
- Str = ThisDocument.Range.Text '取得整个文档的文本内容
- Set Matches = .Execute(Str) '取得匹配内容集合
- .Pattern = "(\d{3})(?=\d)" '设定二次匹配规则
- Application.DisplayAlerts = wdAlertsNone '关闭警告信息
- For Each mMatch In Matches '循环各个匹配到的数值
- Str2 = StrReverse(.Replace(StrReverse(mMatch.Value), "$1 ")) '将对应的数值处理后添加空格
- With Selection.Find '完成整个文档的替换
- .Text = mMatch.Value
- .Replacement.Text = Str2
- .Forward = True
- .Wrap = wdFindContinue
- .Execute Replace:=wdReplaceAll
- End With
- Next mMatch
- Application.DisplayAlerts = wdAlertsAll '显示警告信息
- Set Matches = Nothing '清空项目
- End With
- End Sub
|
2楼 rongjun |
学习了! |
3楼 eliane_lei |
学习了! |
免责声明
有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素,
经与ExcelTip.Net站长Apolloh商议并征得其同意,
现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示,
供有需要的人士查询使用,也慰缅曾经的论坛时代。
所示各个帖子的原作者如对版权有异议,
可与本人沟通提出,或于本站点留言,我们会尽快处理。
在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一