There is html from which I want to get information. I use HtmlAgilityPack
<div class="more__2VudS more__30Xud"> <div class="time__RkgeO time__4mUXN"> 01 Января 2018 в 17:03 </div> I wanted to get everything that is contained in the time class, but the result does not find information. There is a suspicion that incorrectly specified filter for contains
var platform = ss[i].SelectSingleNode("//div[contains(@class, 'time__')]").InnerText;
div[class^="time"]- Dmitry Polyanin