ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 679|回复: 7

求助:word批量查找重复的字或词

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-10-29 16:35 | 显示全部楼层 |阅读模式
求助各位大佬,可否VB实现word批量查找重复的字或词,如公司公司、的的、;;、。。、等等,具体见附件

测试文件.zip

24.05 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2021-10-29 16:50 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
(?)\1
(??)\1
勾选“使用通配符”

TA的精华主题

TA的得分主题

发表于 2021-10-29 19:46 | 显示全部楼层
楼主,下面代码可自动删除所有重复的字、词(红色显示):
  1. Sub aaaa_删除重复字词()
  2.     With ActiveDocument.Content.Find
  3.         .ClearFormatting
  4.         .Text = "(?)\1"
  5.         .Forward = True
  6.         .MatchWildcards = True
  7.         Do While .Execute
  8.             With .Parent
  9.                 .Font.Color = wdColorRed '红色(此行代码可删除!)
  10.                 With .Characters.Last
  11.                     If .Text Like "[一-﨩]" Then .Delete
  12.                 End With
  13.                 .Start = .End
  14.             End With
  15.         Loop
  16.     End With
  17.     With ActiveDocument.Content.Find
  18.         .ClearFormatting
  19.         .Text = "(??)\1"
  20.         .Forward = True
  21.         .MatchWildcards = True
  22.         Do While .Execute
  23.             With .Parent
  24.                 .Font.Color = wdColorRed '红色(此行代码可删除!)
  25.                 With .Characters.Last
  26.                     If .Text Like "[一-﨩]" Then .Delete
  27.                 End With
  28.                 With .Characters.Last
  29.                     If .Text Like "[一-﨩]" Then .Delete
  30.                 End With
  31.                 .Start = .End
  32.             End With
  33.         Loop
  34.     End With
  35.     MsgBox "OK!", 0 + 48
  36. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-10-30 09:24 | 显示全部楼层
413191246se 发表于 2021-10-29 19:46
楼主,下面代码可自动删除所有重复的字、词(红色显示):

可否实现只显示不删除呢,谢谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-10-30 09:25 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-10-30 09:48 | 显示全部楼层
413191246se 发表于 2021-10-29 19:46
楼主,下面代码可自动删除所有重复的字、词(红色显示):

非常感谢,您代码可以运行,但可否不对数字进行检索?数字有重复很多的

TA的精华主题

TA的得分主题

发表于 2021-10-30 13:12 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub test()
  2.     Dim st$
  3.     Dim ph
  4.     Dim doc As Document
  5.     ph = ThisDocument.Path & ""
  6.     st = Dir(ph & "*.doc*")
  7.     Do While st <> ""
  8.         If st <> ThisDocument.Name Then
  9.             Set doc = Documents.Open(ph & st)
  10.             fx doc
  11.             doc.Close (True)
  12.             Set doc = Nothing
  13.         End If
  14.         st = Dir()
  15.     Loop
  16.     MsgBox "OK!", 0 + 48
  17. End Sub
  18. Function fx(doc As Document)
  19.     Dim x%
  20.     doc.Activate
  21.     '.ClearFormatting
  22.     With ActiveDocument.Content.Find

  23.         .Text = "([!^13^11(0-9)]@)\1"
  24.         .Forward = True
  25.         .MatchWildcards = True
  26.         Do While .Execute
  27.             With .Parent
  28.                 .Font.Color = wdColorRed
  29.                 .Start = .End
  30.             End With
  31.         Loop

  32.     End With
  33. End Function
复制代码

TA的精华主题

TA的得分主题

发表于 2021-10-30 23:02 | 显示全部楼层
楼主,请测试:
  1. Sub aaaa查找重复字词()
  2.     ActiveDocument.Content.Font.ColorIndex = wdAuto
  3.     With ActiveDocument.Content.Find
  4.         .ClearFormatting
  5.         .Text = "([一-﨩])\1"
  6.         .Forward = True
  7.         .MatchWildcards = True
  8.         Do While .Execute
  9.             .Parent.Font.Color = wdColorRed
  10.         Loop
  11.     End With
  12.     With ActiveDocument.Content.Find
  13.         .ClearFormatting
  14.         .Text = "([一-﨩][一-﨩])\1"
  15.         .Forward = True
  16.         .MatchWildcards = True
  17.         Do While .Execute
  18.             .Parent.Font.Color = wdColorPink
  19.         Loop
  20.     End With
  21.     MsgBox "OK!", 0 + 48
  22. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-4 09:53 , Processed in 0.024023 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表