Кто сталкивался с регулярками? В c# есть специальный класс regex Как спарсить Code: MasterCard из этого Code: <tr valign="top"><td><b>Type:</b></td><td><h2 style="font-size: 1em; display: inline; font-weight: normal">MasterCard</h2></td>
Я сталкивался. Code: using System.Text.RegularExpressions; ... string source = "<tr valign=\"top\"><td><b>Type:</b></td><td><h2 style=\"font-size: 1em; display: inline; font-weight: normal\">MasterCard</h2></td>"; string pattern = "normal\">(.*)</h2>"; Match match = Regex.Match(source,pattern); Console.WriteLine(match.Groups[1]); Console.ReadLine();