I have HTML within a string where I am trying to replace the following:
<td colspan="12" bgcolor="#460F59">  <font color="#ffffff"><b>IT </b>
<b>214 </b>– <font color="#FFFFFF"><b>Fund of Software Develop </b>
<b> (4 Credits)</b></font></font></td>
with:
<td colspan="12" bgcolor="#460F59">  <font color="#ffffff"><b>IT </b>
<b>214 </b>– <font color="#FFFFFF"><b>Fund of Software Develop </b>
<b> (4 Credits) - Prereq: IT 210</b></font></font></td>
I realize the quotations need to be fixed but how can I show that the HTML is on 3 separate lines?
Actual Code:
s.Replace("<td colspan="12" bgcolor="#460F59">  <font color="#ffffff"><b>IT </b>
<b>214 </b>– <font color="#FFFFFF"><b>Fund of Software Develop </b>
<b> (4 Credits)</b></font></font></td>", "<td colspan="12" bgcolor="#460F59">  <font color="#ffffff"><b>IT </b>
<b>214 </b>– <font color="#FFFFFF"><b>Fund of Software Develop </b>
<b> (4 Credits) - Prereq: IT 210</b></font></font></td>");
"in a string?