zoukankan      html  css  js  c++  java
  • 20190318wdVBA_替换下划线

    Sub 替换下划线()
        Selection.HomeKey wdStory
        Selection.Find.ClearFormatting
        Selection.Find.Font.Underline = wdUnderlineThick
        Selection.Find.Replacement.ClearFormatting
        'Selection.Find.Replacement.Font.Underline = wdUnderlineThick
        With Selection.Find
            .Text = "[!^13^l]"
            .Replacement.Text = "__"
            .Forward = True
            .Wrap = wdFindContinue
            .Format = True
            .MatchCase = False
            .MatchWholeWord = False
            .MatchByte = False
            .MatchAllWordForms = False
            .MatchSoundsLike = False
            .MatchWildcards = True
        End With
        Selection.Find.Execute Replace:=wdReplaceAll
        
    
        
        Selection.HomeKey wdStory
        Selection.Find.ClearFormatting
        Selection.Find.Font.Underline = wdUnderlineSingle
        Selection.Find.Replacement.ClearFormatting
        'Selection.Find.Replacement.Font.Underline = wdUnderlineThick
        With Selection.Find
            .Text = "[!^13^l]"
            .Replacement.Text = "__"
            .Forward = True
            .Wrap = wdFindContinue
            .Format = True
            .MatchCase = False
            .MatchWholeWord = False
            .MatchByte = False
            .MatchAllWordForms = False
            .MatchSoundsLike = False
            .MatchWildcards = True
        End With
        Selection.Find.Execute Replace:=wdReplaceAll
    End Sub
    

      

  • 相关阅读:
    centos7系统最小系统安装并配置网络
    解决 JAAVA springboot 数据存储到数据库数据显示??的方案
    vue scoped
    Vue插件
    Git命令学习
    深度拷贝
    ES6学习_简化对象写法
    ES6学习_字符串的拼接
    ES6学习_变量的解构赋值
    ES6学习_const关键字
  • 原文地址:https://www.cnblogs.com/nextseven/p/10552099.html
Copyright © 2011-2022 走看看