str1="<td><a href=afdda>ffffffff</a></td>"
set regEx=new regExp
regEx.Pattern="(\<td(.*?)\>)\<a(.*?)\>(.*?)\<\/a\>(\<\/td\>)"
regEx.IgnoreCase=true
regEx.Global=True
set Matches=regEx.Execute(str1)
Response.Write Matches.count
'Response.End
for each Match in Matches
Response.Write Match.Submatches(0) & Match.Submatches(3) & Match.Submatches(4)
next
set Matches=nothing