asp正则问题,求助
我要匹配字符串"a=33"后面的33怎么做,前面的a有可能是数字,有可能是字母。用\d*匹配出来的可能是=前面的那个值。好像asp没有限定符,不可以=(\d*)这样匹配出来取()里面的值.re.Pattern="(\d*)"
Set Matches = re.Execute("a=33")
strContent=Matches(0).Value
2010-10-21 10:16
2010-10-22 13:55

2010-10-22 19:54
2010-10-25 16:25