private static void ParseLengthFromHTML(Movie movie, string html) { if (html.IndexOf("<p>Продолжительность: <span>") == -1) { movie.Length = "N/A"; return; } string parsedLength = html.Replace("<p>Продолжительность: <span>", "\0"). Replace("</span><span itemprop=\"duration\"", "\0").Split('\0')[1]; movie.Length = parsedLength; movie.LengthDidLoad(); }