asp 用正则表达式提取出自定义标签中的内容

asp用正则表达式提取出自定义标签中的内容,并且放入数组中,如:<tablewidth="100%"border="0"cellspacing="5"cellpaddin... asp 用正则表达式提取出自定义标签中的内容,并且放入数组中,如:

<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td><GB:List>AAAA</GB:List></td>
</tr>
<tr>
<td><GB:List>BBBB</GB:List></td>
</tr>
</table>

就是吧AAAA,BBBB从我的自定义标签中提取出,然后放入数组中,asp脚本
<GB:List></GB:List>是我的自定义标签,类似<div></div>

我已经提高分数了,麻烦高手帮个忙
展开
 我来答
计名pS
2010-01-28 · TA获得超过3649个赞
知道大有可为答主
回答量:4189
采纳率:0%
帮助的人:2196万
展开全部
Dim Re as RegexP,
Dim Array(), i, colMatches

i = 1
Set re = new RegexP

With Re
.Pattern = "(?<=<GB:List>)[^\s<]+(?=\s*<GB)"
.IgnoreCase = True
End With

Set colMatches = re.Execute($$$Your_String)

for each Match in colMatches
Array(i) = Match.Value
i = i+1
Next

ReDim Preserve Array()
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式