码迷,mamicode.com
首页 > 其他好文 > 详细

excel 利用正则表达式匹配工作表中的数据

时间:2016-12-13 19:31:14      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:ignore   creat   nothing   create   内容   .com   vbscrip   正则表达式   excel   

excel 利用正则表达式匹配工作表中的数据

sheet1中A列放需要匹配的数据

技术分享

sheet2中A列放正则表达式,可以是多个,但至少一个

技术分享

匹配到了则在sheet1中C列对应行显示相关标记内容,比如本案例中显示1111

技术分享

Sub Test()
atr = Worksheets("Sheet1").Range("a65536").End(xlUp).Row
btr = Worksheets("Sheet2").Range("a65536").End(xlUp).Row

a = Worksheets("Sheet1").Range("a1:a" & atr).Value
b = Worksheets("Sheet2").Range("a1:a" & btr).Value

ReDim c(1 To atr, 1 To 1)
Set reg = CreateObject("vbscript.regexp")
With reg
.Global = True
.IgnoreCase = True
For ar = 1 To atr
For br = 1 To btr
If btr = 1 Then
.Pattern = b
Else
.Pattern = b(br, 1)
End If
If .Test(a(ar, 1)) Then
c(ar, 1) = "1111"
Exit For
End If
Next
Next
End With
Range("c1:c" & atr) = c
Set reg = Nothing
End Sub

 

excel 利用正则表达式匹配工作表中的数据

标签:ignore   creat   nothing   create   内容   .com   vbscrip   正则表达式   excel   

原文地址:http://www.cnblogs.com/yorke/p/6170857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!