I have a webpage spoken_text downloaded.
I need to search for 3 numbers with leading "<Font color=#".
' <Font color=#EE5555>4.3</font>
' <Font color=#EEB655>4.6</font>
' <Font color=#5650BE>8.1</font>
I see that matcher works (below).
How do I get the whole string back so that I can extract the numbers?
Dim mm As Matcher
mm = Regex.Matcher("<font color=#EE5555>",spoken_text)
Do While mm.Find
Log ( mm.Match)
Loop
Matcher finds this( '<Font color=#' )
How do I get the number "4.3" string out?
I need to search for 3 numbers with leading "<Font color=#".
' <Font color=#EE5555>4.3</font>
' <Font color=#EEB655>4.6</font>
' <Font color=#5650BE>8.1</font>
I see that matcher works (below).
How do I get the whole string back so that I can extract the numbers?
Dim mm As Matcher
mm = Regex.Matcher("<font color=#EE5555>",spoken_text)
Do While mm.Find
Log ( mm.Match)
Loop
Matcher finds this( '<Font color=#' )
How do I get the number "4.3" string out?