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