markjames2012 0 Newbie Poster

-------------------------------------HTML CODE-----------------------------------------------

<div id="song_html" class="show1">
                <div class="left">
                <!-- info mp3 here -->
                    128 kbps<br /> 00:03:46<br />3.4 mb           </div>
                <div id="right_song">
                    <div style="font-size:15px;"><b>THIS IS JUST A TEST</b></div>
                    <div style="clear:both;"></div>
                    <div style="float:left;">
                        <div style="float:left; height:27px; font-size:13px; padding-top:2px;">

-------------------------------------HTML CODE-----------------------------------------------
How can I Pharse this html code to get only the content i want randomly
( 128 kbps 00:03:46 3.4 mb THIS IS JUST A TEST )

sof far this is my code in VB.net

Dim r As New System.Text.RegularExpressions.Regex("\D+(.* kbps)" 'the problem is here i dont know what is next :) please help Newbiew here
    Dim matches As MatchCollection = r.Matches(rssourcecode)
    For Each itemcode As Match In matches
    Dim i As ListViewItem
         i = ListView1.Items.Add(itemcode.Value.Split("""").GetValue(0))
                i.SubItems.Add(itemcode.Value.Split("""").GetValue(1))
                i.SubItems.Add(itemcode.Value.Split("""").GetValue(2))

next