RegEx is new for me, so any help is appreciated. I need to extract out a price for a line in and HTML table. Here is what the line look like:
<TD><SPAN style="font-face: Arial"><B>Best Price : </B>$000</SPAN> </TD>
I just need to extract the price. Can any show me and example of this in RegEx. Here is what I tried:
Dim Price As New Regex("<b>\bBext\Price(?<$\d*)")
But it does not work.
What doesn't kill you makes you stronger.
<TD><SPAN style="font-face: Arial"><B>Best Price : </B>$000</SPAN> </TD>
I just need to extract the price. Can any show me and example of this in RegEx. Here is what I tried:
Dim Price As New Regex("<b>\bBext\Price(?<$\d*)")
But it does not work.
What doesn't kill you makes you stronger.