ett reguljärt uttryck så här på kvällskvisten kanske
l = "Nu skall vi se om <a href=www.zzz.com>finfin länk </a> kan fungera"
set o = new regexp
o.pattern = "(<a href=.*?>)(.*?)</a>"
o.ignorecase=true
o.global = true
set matches = o.execute(l)
for each match in matches
response.write match.submatches(1) & "<br>"
next