ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > 我的酷贴 > Word > 如何用宏将word文档中的数字分成空格间隔的三位一节?

如何用宏将word文档中的数字分成空格间隔的三位一节?

作者:绿色风 分类: 时间:2022-08-18 浏览:102
楼主
kevinchengcw
Q: 如何用宏将word文档中的数字分成空格间隔的三位一节?
A: 代码如下(只处理整数部分):
  1. Sub test()
  2. Dim Str$, Str2$, mMatch, Matches
  3. With CreateObject("vbscript.regexp")    '创建正则项目用于提取数字
  4.     .Global = True  '全局有效
  5.     .Pattern = "(?!\.)(.*)\d{3}"    '设定规则
  6.     Str = ThisDocument.Range.Text   '取得整个文档的文本内容
  7.     Set Matches = .Execute(Str)     '取得匹配内容集合
  8.     .Pattern = "(\d{3})(?=\d)"  '设定二次匹配规则
  9.     Application.DisplayAlerts = wdAlertsNone    '关闭警告信息
  10.     For Each mMatch In Matches  '循环各个匹配到的数值
  11.         Str2 = StrReverse(.Replace(StrReverse(mMatch.Value), "$1 "))    '将对应的数值处理后添加空格
  12.         With Selection.Find '完成整个文档的替换
  13.             .Text = mMatch.Value
  14.             .Replacement.Text = Str2
  15.             .Forward = True
  16.             .Wrap = wdFindContinue
  17.             .Execute Replace:=wdReplaceAll
  18.         End With
  19.     Next mMatch
  20.     Application.DisplayAlerts = wdAlertsAll     '显示警告信息
  21.     Set Matches = Nothing   '清空项目
  22. End With
  23. End Sub
2楼
rongjun
学习了!
3楼
eliane_lei
学习了!

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap