up vote 2 down vote favorite
2
share [g+] share [fb]

I'm getting full html code using WebClient. But i need to get specified div from full html using regular expression.

for example:

<body>
<div id="main">
     <div id="left" style="float:left">this is a <b>left</b> side:<div style='color:red'> 1 </div>
     </div>
     <div id="right" style="float:left"> main side</div>
<div>
</body>

if i need div named 'main', function return

<div id="left" style="float:left">this is a <b>left</b> side:<div style='color:red'> 1 </div>
     </div>
     <div id="right" style="float:left"> main side</div>

If i need div named 'left', function return

this is a <b>left</b> side:<div style='color:red'> 1 </div>

If i need div named 'right', function return

 main side

How can i do?

link|improve this question

64% accept rate
Re your comment; HTML Agility Pack is correct; your html is wrong (malformed). Look at the thin just before </body>; that should be </div> - otherwise it is assumed to be a nested, unterminated start <div>. – Marc Gravell Sep 16 '09 at 8:51
Ok. Very very thanks – ebattulga Sep 16 '09 at 9:20
feedback

2 Answers

up vote 2 down vote accepted

Why do people insist on trying to use regex to parse html? You can probably do it if you exclude a whole host of edge-cases... but just use HTML Agility Pack and you're done:

HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(...); // or Load
string main = doc.DocumentNode.SelectSingleNode("//div[@id='main']").InnerHtml;

(note I'm assuming it is not xhtml; if it is xhtml, use XmlDocument or XDocument, and very similar code to the above)

link|improve this answer
Thanks. That's very helpful. But HtmlAgilityPack wrong work. When I'm downloading and testing on the previous example, doc.DocumentNode.SelectSingleNode("//div[@id='main']").InnerHtml is return <div id="left" style="float:left">this is a <b>left</b> side:<div style="color:red"> 1 </div> </div> <div id="right" style="float:left"> main side</div> <div> </div> – ebattulga Sep 16 '09 at 7:45
What is it " <div> </div>" – ebattulga Sep 16 '09 at 7:46
Explained in comment to the question. In short, HTML Agility Pack is correct; the source html is wrong. – Marc Gravell Sep 16 '09 at 8:52
feedback
string divname = "somename";
Match m = RegEx.Match(htmlContent, "<div[^>]*id="+divname+".*?>(.*?)</div");
string contenct = m.Groups[1].Tostring();

won't work if you have nested divs inside the desired div

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.