ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > E问E答 > Excel VBA > 如何将不规则汉字数字混合的字符分开?

如何将不规则汉字数字混合的字符分开?

作者:绿色风 分类: 时间:2022-08-17 浏览:110
楼主
liuguansky
Q:下面是部分数据,现在要求将汉字和数字混合的字符分开来?
数据很多有15万行

A:
  1. Sub test()
  2.     Dim FN$, Txt As Object, RegEx As Object, Arr, Arrt, N&, I&, T%, Str$
  3.     FN = ThisWorkbook.Path & "\新建 文本文档.txt"
  4.     Set RegEx = CreateObject("vbscript.regexp")
  5.     RegEx.Global = True
  6.     With CreateObject("scripting.filesystemobject")
  7.         Set Txt = .opentextfile(FN)
  8.         ReDim Arr(1 To 7, 1 To 1)
  9.         Arrt = Split("序号 城市 日期 污染指数 首要污染物 空气质量级别 空气质量状况", " ")
  10.         For N = LBound(Arr) To UBound(Arr)
  11.             Arr(N, 1) = Arrt(N - 1)
  12.         Next N
  13.         Do While Not Txt.atendofstream
  14.             Str = Txt.readline
  15.             If Str Like "#*" Then
  16.                 I = UBound(Arr, 2) + 1
  17.                 ReDim Preserve Arr(1 To 7, 1 To I)
  18.                 RegEx.Pattern = "(\d{4}\-\d{2}\-\d{2}|\d+|[ⅡⅠⅤ]+)"
  19.                 Str = WorksheetFunction.Trim(RegEx.Replace(Str, " $1 "))
  20.                 RegEx.Pattern = "(\d )([ⅡⅠⅤ])"
  21.                 Str = RegEx.Replace(Str, "$1 $2")
  22.                 Arrt = Split(Str, " ")
  23.                 For N = LBound(Arr) To UBound(Arr)
  24.                     Arr(N, I) = Arrt(N - 1)
  25.                 Next N
  26.             End If
  27.         Loop
  28.         Txt.Close
  29.         Set Txt = Nothing
  30.     End With
  31.     Application.ScreenUpdating = False
  32.     Application.Calculation = xlCalculationManual
  33.     Cells.ClearContents
  34.     For I = LBound(Arr) To UBound(Arr)
  35.         For N = LBound(Arr, 2) To UBound(Arr, 2)
  36.             Cells(N, I) = Arr(I, N)
  37.         Next N
  38.     Next I
  39.     Application.Calculation = xlCalculationAutomatic
  40.     Application.ScreenUpdating = True
  41.     Set RegEx = Nothing
  42. End Sub
2楼
eliane_lei
进来学习,谢谢分享

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap