Regex regex = new Regex("[\"]lastPrice[\"]:([0-9]+)(([.]([0-9]+))?)");
MatchCollection matches = regex.Matches(page);
if (matches.Count > 0)
{
int num = 0;
foreach (Match match in matches)
{
if (num == 78)
{
value = match.Value;
break;
}
else
{
num++;
}
}
}
else
{
return "";
}
Перечитал свой вопрос, и решил просто перегуглить каждую функцию и каждую строку. Спасибо, что ли :D