raphael232
Programmer
Hi, how do you return the text between a link using a regular expression i tried:
Set objRegExp = New RegExp
objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = "<a(.*?)>(.*?)</a>"
Set objMatches = objRegExp.Execute(strContent)
strText = objMatches(0).value but it also includes the link. How do i get just the bit between the link. Appreciate your help.
Thanks
Set objRegExp = New RegExp
objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = "<a(.*?)>(.*?)</a>"
Set objMatches = objRegExp.Execute(strContent)
strText = objMatches(0).value but it also includes the link. How do i get just the bit between the link. Appreciate your help.
Thanks