Loop genne, regEx matches?
<%Function doLink (Content)
Set regExp = New RegExp
regExp.Global = True
regExp.IgnoreCase = True
regExp.Pattern = "\[a url=(.*)\](.*)\[\/a\]"
Content = regExp.Replace (Content, "<a href=""$1"">$2</a>")
Set regExp = Nothing
doLink = Content
End Function
Response.Write doLink("This is some text with 1 URL [a url=http://microsoft.com]Microsoft[/a]<br />")
Response.Write doLink("This is some text with 2 URL's [a url=http://microsoft.com]Microsoft[/a] [a url=http://freebsd.org]FreeBSD[/a]")
%>
Hvordan looper jeg igennem de matches der nu måtte være og naturligvis får den ønskede funktion ud af det?