Feedback

GetCharts

    class Charts
    {
        public static List<String> GetCharts()
        {
            WebClient wc = new WebClient();
            String qt = wc.DownloadString("http://www.n-joy.de/pages_special/0,3046,SPM11218,00.html");
            List<String> charts = new List<String>();
            MatchCollection mc = Regex.Matches(qt,
                "<td class="allAvailableSpace"" headers=""text""><strong>(.+)<\/strong><br \/>(.+)<br \/>"");

5 Kommentare