Remove unwanted spaces and lines in tags inside div in string result..?
Hi All,I have one small issue,
This is my Div.. in string object...
string result="<div class="clearBlock">
<ul class="scroll">
<li>
<div class="clearWidth MRGT20PX">
<div class="floatLeft LineHeight33">
<i>
p530777 Says</i></div>
<div class="date floatRight">
05-28-2015</div>
</div>
</li>
</ul>
</div>"
but i want to remove unwanted spaces between tags and lines and i need the result like below.
string result="<div class="clearBlock"><ul class="scroll"><li><div class="clearWidth MRGT20PX"><div class="floatLeft LineHeight33"><i>p530777 Says</i></div><div class="date floatRight">05-28-2015</div></div></li></ul></div>"
If any one knows how to do this please help me...