Obtengo el valor de ChildNode.InnerHtml como
20th Aug 2013<br>Ojas Systems <br> Pune <br> Software
Cómo dividir los valores de InnerHtml generado por HtmlAgilty. Intenté convertir InnerHtml en cadena, pero arroja un error
Sin sobrecarga para el método 'Write' toma 0 argumentos
Puede deberse a etiquetas html no cerradas, pero entonces, ¿cuál podría ser la solución? A continuación se muestra el InnerHtml devuelto.
<a href="http://jobs.monsterindia.com/details/13826093.html?sig=js-1- 4f08ba3c3102de443076cfb01e15745e-1&from=" target="_blank" id="link13826093">.Net java </a>, 20th Aug 2013<br>Ojas Systems Private Limited<br> Pune, 0-0 years: Looking for freshers who is trained in .Net Java.The location will be Pune.Preferably passed in 2012-2013. <br><a href="javascript:findSimilar(13826093)">Similar Jobs</a> - <a href="http://jobsearch.monsterindia.com/searchresult.html?cid=117314;lan=1">All Jobs by this Recruiter</a> - <a href="javascript:void(0)" onclick="javascript:openSocialTwist({EXP:'Experience - 0 to 0 years',LINK:'http://jobs.monsterindia.com/details/13826093.html',COMP:'Company Name - Ojas Systems Private Limited',LOC:'Location - Pune',ROLE:'',KWD:'Key skills - .net java',TTL:'Job Title - .Net java '})">Share this job</a>
Tomado de la forma aquí funcionó para mí.
string str = "hai<br/>how<br/>Are<br/>you";
string[] delim = { "<br/>" };
string[] spltd = str.Split(delim, StringSplitOptions.None);