[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
好方法,学习学习

TOP

办法比较笨,不过测试附件能通过
  1. strKey = "screen_key_long_press_timeout"
  2. with CreateObject("ADODB.Stream")
  3.     .Type = 2
  4.     .Mode = 3
  5.     .CharSet = "utf-8"
  6.     .Open
  7.     .LoadFromFile "arrays.xml"
  8.     ar = Split(.ReadText(-1),"</string-array>")
  9.     For i = 0 to UBound(ar)
  10.         If InStr(ar(i),strKey) Then ar(i) = RegEx(ar(i))
  11.     Next
  12.     .Position = 0
  13.     .CharSet = "utf-8"
  14.     .WriteText Join(ar,"</string-array>")
  15.     .SetEOS
  16.     .SaveToFile "a.xml",2
  17.     .Close
  18. End with
  19. Function RegEx(str)
  20.     Set re = New RegExp
  21.     re.Pattern = "([\s\S]+?)([\d\.]+)|([\s\S]+)$"
  22.     re.Global = true
  23.     For Each m in re.Execute(str)
  24.         If m.SubMatches(1) <> "" Then
  25.             RegEx = RegEx & m.SubMatches(0) & m.SubMatches(1)/2
  26.         Else RegEx = RegEx & m.SubMatches(2)
  27.         End If
  28.     Next
  29. End Function
复制代码
1

评分人数

    • ttrrf: 乐于助人技术 + 1

TOP

返回列表