Reading a text string from a web page

I am currently trying to read text from a website using a C # program. To be precise, Track and Dj from www.hardbase.fm.

This is what the source code of the page looks like:

<div id="Moderator">
  <div id="Moderator_special">
    <div style="width:158px; float:left; margin:8px"></div>
    <div id="onAir" style="width:420px;overflow:hidden;">
      <strong>
        <a href="/member/46069" target="_top">
          <span style="color:#4AA6E5">BIOCORE</span>
        </a>
        <span style="color:#26628B"> mit "This Is BIOCORE" (Hardstyle)</span>
      </strong>
    </div>
  </div>
</div>
      

Run codeHide result


The text I want to read is "BIOCORE" and "mit". This is BIOCORE "(Hardstyle)" (the text is displayed when the snippet starts).

If you've tried the following:

System.Net.WebClient wc = new System.Net.WebClient();
byte[] raw = wc.DownloadData("http://www.hardbase.fm/");
first = webData.IndexOf("#4AA6E5\">") + "#4AA6E5\">".Length;
last = webData.LastIndexOf("</span></a><span style=\"color:#26628B\">");
hb_dj = webData.Substring(first, last - first);

      

But this does not always work, because sometimes the source code of the page changes slightly. Like a color or so. And then the search won't work.

So the question is: is there a better way to do this?

+3


source to share


1 answer


You should try HTML Agility Pack



HtmlWeb page = new HtmlWeb();
HtmlDocument document = page.Load("http://www.hardbase.fm/");

var nodes = document.DocumentNode.SelectNodes("//[@id='onAir']");
var nodes2 = nodes.Select(c1 => c1.SelectNodes("span")).ToList();

var span1=nodes2[0];
var span2 nodes2[1]

      

+3


source







All Articles