ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

如何给制定的几个单词标注红色下划线

[复制链接]

TA的精华主题

TA的得分主题

发表于 2020-8-11 07:23 | 显示全部楼层 |阅读模式
本帖最后由 zzpsx 于 2020-8-11 07:38 编辑


如何给制定的几个单词标注红色下划线.rar (11.96 KB, 下载次数: 12)

如何写一段代码,执行以后,可以搜索文中是否有以下单词:but,something,anything,nothing,everything
如果有,则全部标红加下划线,不用考虑大小写和重复出现。

以下为试验文本:
Couple restores antique sewing machine to make face masks
After sitting idle for several decades, a nearly 100-year-old sewingmachine has been put to good use during the Covid-19 pandemic.
"We dug it out, dusted it off, and oiled the entiremachine," he said.
Giselle Williams had never sewn anythingbefore her mask-making endeavors but learned quickly under her husband's expertinstruction. His grandmother, Lovetta Corbell, was a seamstress and taught himto sew in the summers he spent with her during his childhood. He showed hiswife how to thread the machine, wind a bobbin, and sew a straight stitch.
"In my wildest dreams, I would have never guessed that the timemy grandmother spent with me on her Singer would come back to bear fruit ...responding to a real need," he said.
Before long, they were supplying friends, family, and frontlineworkers with masks. Their team efforts inspired other members of theircommunity to get involved. Family, friends and neighbors donated fabric tosupport the couple's mission.

TA的精华主题

TA的得分主题

发表于 2020-8-11 08:47 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Sub xiaohualu()
Dim s, ar, i&
s = "but,something,anything,nothing,everything"
ar = Split(s, ",")
For i = 0 To UBound(ar)
    With ThisDocument.Content.Find
        Do While .Execute(ar(i))
            .Parent.Font.Color = wdColorRed
        Loop
    End With
Next i
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2020-8-11 08:59 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
小花鹿 发表于 2020-8-11 08:47
Sub xiaohualu()
Dim s, ar, i&
s = "but,something,anything,nothing,everything"

用我的附件执行这个代码,好像没反应,不知道我的问题出在哪里。

TA的精华主题

TA的得分主题

发表于 2020-8-11 09:09 | 显示全部楼层

Sub dm1()
    Dim arr, i&
    arr = Array("but", "something", "anything", "nothing", "everything")
    For i = 0 To UBound(arr)
        With ActiveDocument.Content.Find
            .ClearFormatting
            .MatchWildcards = True
            .Text = arr(i)
            With .Replacement
                .ClearFormatting
                .Font.Color = vbRed
                .Font.Underline = wdUnderlineSingle
            End With
            .Execute Format:=True, Replace:=wdReplaceAll
        End With
    Next i
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2020-8-11 09:14 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
zzpsx 发表于 2020-8-11 08:59
用我的附件执行这个代码,好像没反应,不知道我的问题出在哪里。

Sub xiaohualu()
Dim s, ar, i&
s = "but,something,anything,nothing,everything"
ar = Split(s, ",")
For i = 0 To UBound(ar)
    With ThisDocument.Content.Find
        Do While .Execute(ar(i))
            .Parent.Font.Color = wdColorRed
            .Parent.Font.Underline = wdUnderlineSingle
        Loop
    End With
Next i
End Sub、代码没问题

TA的精华主题

TA的得分主题

 楼主| 发表于 2020-8-11 09:14 | 显示全部楼层
本帖最后由 zzpsx 于 2020-8-11 09:17 编辑
cuanju 发表于 2020-8-11 09:09
Sub dm1()
    Dim arr, i&
    arr = Array("but", "something", "anything", "nothing", "everything ...


能全字匹配就更好了。
还有,如果能把任何以ly结尾的单词也标注红色下划线,就更好了。

TA的精华主题

TA的得分主题

发表于 2020-8-11 09:21 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
zzpsx 发表于 2020-8-11 09:14
能全字匹配就更好了。
还有,如果能把任何以ly结尾的单词也标注红色下划线,就更好了。

Sub dm5()
Rem 全字匹配,例如匹配but时不会匹配distribute和contribution
    Dim arr, i&
    arr = Array("but", "something", "anything", "nothing", "everything")
    For i = 0 To UBound(arr)
        With ActiveDocument.Content.Find
            .ClearFormatting
            .MatchWholeWord = True '全字匹配
            .MatchWildcards = False '不使用通配符
            .Text = arr(i)
            With .Replacement
                .ClearFormatting
                .Font.Color = vbRed
                .Font.Underline = wdUnderlineSingle
            End With
            .Execute Format:=True, Replace:=wdReplaceAll
        End With
    Next i
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2020-8-11 09:30 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 cuanju 于 2020-8-11 09:36 编辑


Sub f6()
    Rem ly结尾的单词标注红色下划线(但注意会出现:family也会标红色下划线问题,后期用代码做删除处理)
    With ActiveDocument.Content.Find
        .ClearFormatting
        .MatchWildcards = True '使用通配符
        .Text = "[A-Za-z]@ly>"
        With .Replacement
            .ClearFormatting
            .Font.Color = vbRed
            .Font.Underline = wdUnderlineSingle
        End With
        .Execute Format:=True, Replace:=wdReplaceAll
    End With

    '以下代码处理family(不区分大小写)
    With ActiveDocument.Content.Find
        .ClearFormatting
        .Text = "family"
        With .Replacement
            .ClearFormatting
            .Font.Color = vbBlack
            .Font.Underline = wdUnderlineNone
        End With
        .Execute Format:=True, Replace:=wdReplaceAll
    End With
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2020-8-11 13:35 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub aaaa单词标红加下划线()
  2. 'code by xiaohualu
  3.     Dim s$, arr, i&
  4.     s = "but,something,anything,nothing,everything"
  5.     arr = Split(s, ",")
  6.     For i = 0 To UBound(arr)
  7.         With ActiveDocument.Content.Find
  8.             .ClearFormatting
  9.             .Text = arr(i)
  10.             .Forward = True
  11.             .MatchWildcards = False
  12.             .MatchWholeWord = True
  13.             Do While .Execute
  14.                 With .Parent
  15.                     .Font.Color = wdColorRed
  16.                     .Underline = wdUnderlineSingle
  17.                 End With
  18.             Loop
  19.         End With
  20.     Next
  21. 'code by cuanju
  22.     With ActiveDocument.Content.Find
  23.         .ClearFormatting
  24.         .Text = "[A-Za-z]@ly>"
  25.         .Forward = True
  26.         .MatchWildcards = True
  27.         Do While .Execute
  28.             With .Parent
  29.                 .Font.Color = wdColorPink
  30.                 .Underline = wdUnderlineSingle
  31.             End With
  32.         Loop
  33.     End With
  34. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2020-8-11 13:40 | 显示全部楼层
* 楼上代码,成功算 小花鹿老师/cuanju老师的功劳,不成功算我的。
* 第二段,我查找“<[^32]@ly>”,结果,形成无限循环,后来,我用 字长=0 终止程序,不如 cuanju 老师的好。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-24 05:18 , Processed in 0.049266 second(s), 19 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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