ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 那位大神帮我看一下这个代码为什么二次运行无法提取数据

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-9-13 19:50 | 显示全部楼层 |阅读模式
点击无法提取到数据,那位大神给完善一下,主要是二大块,表1是提取开始新的交易与交易保存成功之前的销售数据,表2是提取以付款方式为“付款方式 储值卡:”会员卡消费数据,已可以提取一次,可是二次点击无法取数据。

提取数据.zip

67.84 KB, 下载次数: 4

TA的精华主题

TA的得分主题

发表于 2018-9-13 20:34 | 显示全部楼层
  1. Sub test()
  2.   Dim r%, i%
  3.   Dim arr, brr
  4.   Dim reg1 As New RegExp
  5.   Dim reg2 As New RegExp
  6.   Dim reg3 As New RegExp
  7.   Dim flg1 As Boolean
  8.   Dim flg2 As Boolean
  9.   Dim mypath$, myname$
  10.   With reg1
  11.     .Global = False
  12.     .Pattern = "交易数量为([\d\.]+)的商品:(\d+)价格为:([\d\.]+)"
  13.   End With
  14.   With reg2
  15.     .Global = False
  16.     .Pattern = "零售手输会员卡卡号:([\d]+)"
  17.   End With
  18.   With reg3
  19.     .Global = False
  20.     .Pattern = "(\d{4}-\d{2}-\d{2})\s+\d{2}:\d{2}:\d{2}\s+\d{3}\s+付款方式\s+储值卡:([\d\.]+)"
  21.   End With
  22.   
  23.   mypath = ThisWorkbook.Path & ""
  24.   myname = "log20180902.txt"
  25.   If Dir(mypath & myname) = "" Then
  26.     MsgBox mypath & myname & "不存在!"
  27.     Exit Sub
  28.   End If
  29.   ss = ReadUTF(mypath & myname)
  30.   arr = Split(ss, vbCrLf)
  31.   ReDim brr(1 To UBound(arr), 1 To 3)
  32.   ReDim crr(1 To UBound(arr), 1 To 3)
  33.   m = 0
  34.   n = 0
  35.   flg1 = False
  36.   For i = 0 To UBound(arr)
  37.     ss = Trim(arr(i))
  38.     If InStr(ss, "开始新的交易") <> 0 Then
  39.       flg1 = True
  40.     ElseIf InStr(ss, "交易保存成功") <> 0 Then
  41.       flg1 = False
  42.     End If
  43.     If flg1 Then
  44.       Set mh = reg1.Execute(ss)
  45.       If mh.Count > 0 Then
  46.         m = m + 1
  47.         brr(m, 1) = mh(0).SubMatches(1)
  48.         brr(m, 2) = mh(0).SubMatches(0)
  49.         brr(m, 3) = mh(0).SubMatches(2)
  50.       End If
  51.     End If
  52.   Next
  53.   
  54.   For i = UBound(arr) To 0 Step -1
  55.     ss = Trim(arr(i))
  56.     If InStr(ss, "交易保存成功") <> 0 Then
  57.       flg1 = True
  58.     ElseIf InStr(ss, "开始新的交易") <> 0 Then
  59.       flg1 = False
  60.     End If
  61.     If flg1 Then
  62.       Set mh = reg3.Execute(ss)
  63.       If mh.Count > 0 Then
  64.         n = n + 1
  65.         crr(n, 1) = mh(0).SubMatches(0)
  66.         crr(n, 3) = mh(0).SubMatches(1)
  67.         flg2 = True
  68.       End If
  69.       If flg2 Then
  70.         Set mh = reg2.Execute(ss)
  71.         If mh.Count > 0 Then
  72.           crr(n, 2) = mh(0).SubMatches(0)
  73.           flg2 = False
  74.         End If
  75.       End If
  76.     End If
  77.   Next
  78.   
  79.   With Worksheets("sheet1")
  80.     .UsedRange.Offset(1, 0).ClearContents
  81.     .Columns(1).NumberFormatLocal = "@"
  82.     If m > 0 Then
  83.       .Range("a2").Resize(m, UBound(brr, 2)) = brr
  84.     End If
  85.     r = .Cells(.Rows.Count, 1).End(xlUp).Row
  86.     .Range("a1:c" & r).Borders.LineStyle = xlContinuous
  87.   End With
  88.   With Worksheets("sheet2")
  89.     .UsedRange.Offset(1, 0).ClearContents
  90.     .Columns(2).NumberFormatLocal = "@"
  91.     If n > 0 Then
  92.       .Range("a2").Resize(n, UBound(crr, 2)) = crr
  93.     End If
  94.     r = .Cells(.Rows.Count, 1).End(xlUp).Row
  95.     .Range("a1:c" & r).Borders.LineStyle = xlContinuous
  96.   End With
  97. End Sub
  98. Function ReadUTF(ByVal FileName As String) As String
  99.     With CreateObject("ADODB.Stream")
  100.         .Type = 2    '读取文本文件
  101.         .Mode = 3   '读写
  102.         .Open
  103.         .LoadFromFile FileName
  104.         .Charset = "UTF-8"  '设定编码
  105.         .Position = 2
  106.         ReadUTF = .ReadText
  107.         .Close
  108.     End With
  109. End Function

复制代码

TA的精华主题

TA的得分主题

发表于 2018-9-13 20:35 | 显示全部楼层
详见附件。

提取数据.zip

67.84 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2018-9-14 08:06 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
中文貌似乱码了,为什么

中文出现了乱码,什么原因

中文出现了乱码,什么原因

TA的精华主题

TA的得分主题

发表于 2018-9-14 08:25 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-9-14 14:45 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Option Explicit

  2. Sub Main()
  3.     Dim strPath As String, strTxt As String, strTemp As String
  4.     Dim objReg As Object, strPat As String
  5.     Dim objMatchs As Object, objMatch As Object, lngCount As Long, lngRow As Long
  6.     Dim arrResult_A As Variant, arrResult_B As Variant
  7.    
  8.     strPath = ThisWorkbook.Path & "\log20180902.txt"
  9.     If Dir(strPath) = "" Then Exit Sub
  10.    
  11.     strTxt = LoadFile(strPath)
  12.    
  13.     Set objReg = CreateObject("VBScript.RegExp")
  14.    
  15.     strPat = "开始新的交易([\s\S]*?)(交易保存成功)"
  16.     With objReg
  17.         .Global = True
  18.         .Pattern = strPat
  19.     End With
  20.    
  21.     If objReg.test(strTxt) = False Then Exit Sub
  22.     Set objMatchs = objReg.Execute(strTxt)
  23.     For Each objMatch In objMatchs
  24.         strTemp = strTemp & objMatch
  25.     Next
  26.    
  27.     strPat = "交易数量为([\d\.]+)的商品:(\d+)价格为:([\d\.]+)"
  28.     With objReg
  29.         .Global = True
  30.         .Pattern = strPat
  31.     End With
  32.     Set objMatchs = objReg.Execute(strTemp)
  33.     lngCount = objMatchs.Count
  34.     ReDim arrResult_A(1 To lngCount, 1 To 3)
  35.     For lngRow = 0 To lngCount - 1
  36.         arrResult_A(lngRow + 1, 1) = objMatchs(lngRow).SubMatches(1)
  37.         arrResult_A(lngRow + 1, 2) = objMatchs(lngRow).SubMatches(0)
  38.         arrResult_A(lngRow + 1, 3) = objMatchs(lngRow).SubMatches(2)
  39.     Next
  40.    
  41.     strPat = "零售手输会员卡卡号:([\d]+)[\s\S]*?(\d{4}-\d{2}-\d{2})\s+\d{2}:\d{2}:\d{2}\s+\d{3}\s+付款方式\s+储值卡:([\d\.]+)"
  42.     With objReg
  43.         .Global = True
  44.         .Pattern = strPat
  45.     End With
  46.     Set objMatchs = objReg.Execute(strTemp)
  47.     lngCount = objMatchs.Count
  48.     ReDim arrResult_B(1 To lngCount, 1 To 3)
  49.     For lngRow = 0 To lngCount - 1
  50.         arrResult_B(lngRow + 1, 1) = objMatchs(lngRow).SubMatches(1)
  51.         arrResult_B(lngRow + 1, 2) = objMatchs(lngRow).SubMatches(0)
  52.         arrResult_B(lngRow + 1, 3) = objMatchs(lngRow).SubMatches(2)
  53.     Next
  54.    
  55.     Sheet1.Range("A2:C" & Rows.Count).ClearContents
  56.     Sheet1.Range("A2").Resize(UBound(arrResult_A), 3) = arrResult_A
  57.    
  58.     Sheet2.Range("A2:C" & Rows.Count).ClearContents
  59.     Sheet2.Range("A2").Resize(UBound(arrResult_B), 3) = arrResult_B
  60.    
  61. End Sub


  62. '读取UTF8文件
  63. Function LoadFile(ByVal strFileName) As String
  64.     Dim objStream As Object
  65.     Set objStream = CreateObject("ADODB.Stream")
  66.     With objStream
  67.         .Type = 2
  68.         .Mode = 3
  69.         .Open
  70.         .LoadFromFile strFileName
  71.         .Charset = "utf-8"
  72.         .Position = 2
  73.         LoadFile = .ReadText
  74.         .Close
  75.     End With
  76.     Set objStream = Nothing
  77. End Function
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-15 10:47 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-15 14:16 , Processed in 0.024788 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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