Dim Line As String
Dim Matcher1 As Matcher
Line = "<td class='nv_search'><a onClick='myColorClick(20)' target ='_blank' href='http://www.mysite.com/doc-pdf/pdf/2466/DOC/4555.html'><b>4555</b></a></td>"
Matcher1 = Regex.Matcher("<b>.*</b>", Line)
Do While Matcher1.Find
Line = Matcher1.Match.Replace("<b>", "").Replace("</b>", "")
Msgbox(Line, "")
Loop
Dim Line As String
Dim Matcher1 As Matcher
Line = "<td class='nv_search'><a onClick='myColorClick(20)' target ='_blank' href='http://www.mysite.com/doc-pdf/pdf/2466/DOC/4555.html'><b>4555</b></a></td>"
Matcher1 = Regex.Matcher("<b>.*</b>", Line)
Do While Matcher1.Find
Line = Matcher1.Match.Replace("<b>", "").Replace("</b>", "")
Msgbox(Line, "")
Loop