Set Regex = New RegExp
Regex.Pattern = """[^""]*""|[^,]*"
Regex.Global = True
//I have a for loop here to loop through records
text = Cells.Item(r, 7).Value
For Each Match In Regex.Execute(text)
count = count + 1
Next Match
这是我的正则表达式代码,这是我从中提取数据的表,
当我在调试模式下运行代码时,PCBaa 计数为 2,c3 和 c4 为 14,C6-c36 为 36,我的正则表达式代码是否无法提取逗号之间的代码?