找回密码
 立即注册
搜索

优化:蜗牛快些走!请大侠斧正正则代码。

2
回复
458
查看
[复制链接]

4

主题

10

帖子

62

幻币

一流武者

Rank: 3Rank: 3

积分
348
QQ
2017-4-10 10:23:43 显示全部楼层 |阅读模式
Sub 修改西文字1()
Set reg = CreateObject("vbscript.regexp")
reg.Global = True
reg.IgnoreCase = True
t = Timer
reg.Pattern = "[A-Za-z]"
For Each sld In ActivePresentation.Slides
For Each shp In sld.Shapes
If shp.HasTextFrame Then
If shp.TextFrame.HasText Then
trng = shp.TextFrame.TextRange.Text
For j = 1 To reg.Execute(trng).Count - 1
With shp.TextFrame.TextRange.Characters(reg.Execute(trng)(j).firstindex + 1).Font
.Size = 20
.Color.RGB = vbYellow
.Italic = msoCTrue
.NameAscii = "方正姚体"
End With
Next
End If
End If
Next
Next
MsgBox (Timer - t) & "秒"
End Sub
蜗牛快些走.zip (315.73 KB, 下载次数: 12)
PPT学习论坛
回复

使用道具 举报

5

主题

9

帖子

40

幻币

江湖少侠

Rank: 2

积分
187
QQ
2017-4-10 11:37:57 显示全部楼层
遍历文本框、表格和组合,居然还有些西文字体不受控制。代码如下,请大虾斧正:
Sub 修改西文字1()
Set reg = CreateObject("vbscript.regexp")
reg.Global = True
reg.IgnoreCase = True
t = Timer
reg.Pattern = "[A-Za-z]" 'A-Za-z'[一-隝]龢
For Each sld In ActivePresentation.Slides
   For Each shp In sld.Shapes
       If shp.HasTextFrame Then
          If shp.TextFrame.HasText Then
                trng = shp.TextFrame.TextRange.Text
                istr = Replace(trng, Chr(7), "")
                 For j = 1 To reg.Execute(istr).Count - 1
                    With shp.TextFrame.TextRange.Characters(reg.Execute(istr)(j).firstindex + 1).Font
                         .Size = 20
                         .Color.RGB = vbRed
                         .Italic = msoCTrue
                         .NameAscii = "方正姚体"
                   End With
                 Next
          End If
          If shp.HasTable Then
             With shp.Table
               r = .Rows.Count
               c = .Columns.Count
               For x = 1 To r
                  For y = 1 To c
                  rg = .Table.Cell(x, y).Shape.TextFrame.TextRange.Text
                     For i = 1 To reg.Execute(rg).Count - 1
                         With shp.TextFrame.TextRange.Characters(reg.Execute(rg)(i).firstindex + 1).Font
                           .Size = 25
                           .Color.RGB = vbGreen
                           .Italic = False
                           .NameAscii = "Arial"
                           .Name = "Arial"
                         End With
                     Next
                  Next
                Next
              End With
           End If
           If InStr(shp.Name, "Group") > 0 Then
                For i = 1 To shp.GroupItems.Count
                    If shp.GroupItems(i).HasTextFrame Then
                        If shp.GroupItems(i).TextFrame.HasText Then
                             rng = shp.GroupItems(ii).TextFrame.TextRange.Text
                             For ii = 1 To reg.Execute(rng).Count - 1
                             With shp.TextFrame.TextRange.Characters(reg.Execute(rng)(ii).firstindex + 1).Font
                                .Size = 25
                                .Color.RGB = vbGreen
                                .Italic = False
                                .NameAscii = "Arial"
                                .Name = "Arial"
                             End With
                             Next
                        End If
                    End If
                Next
           End If
       End If
    Next
Next
MsgBox (Timer - t) & "秒"
End Sub
PPT学习论坛
回复 支持 反对

使用道具 举报

4

主题

7

帖子

92

幻币

一流武者

Rank: 3Rank: 3

积分
299
QQ
2017-4-10 12:06:37 显示全部楼层
有人路过吗?希望援手一助!!谢谢
PPT学习论坛
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册