Im doing content migration (pushing the content of one set of web pages in .html format to another set of pages in .asp format) and while doing that I need to remove certain parts of the existing content. I need to remove the following chunk of code from each old page before moving the content to the new page.
<td align="left" valign="top" bgcolor="#04047c">
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#
+04047c" width="116">
<!--#include virtual="/bus_nav_all_graphic.ssi"-->
</table>
<p> </p>
</td>
I tried doing a search on a row with a
<td align=left ... bgcolor=#04047c... and ending it with
</td>, but it doesnt want to work. Here is the code I used
#grabbing and deleting the left nav
if (/<td align="left valign="top" bgcolor="#04047c.*?>/i ... /
+<\/td.*?>/i){
# this is the line that starts the left nav
# extract everything between the open and close td and delete
+ it
$leftnav_temp = $_;
$leftnav_temp =~ s/(.*?)\<td align="left valign="top" bgcolor
+="#04047c\>(.*?)\<\/td\>/$2/i;
chomp($leftnav_temp);
$leftnav = "$leftnav_temp" ;
$leftnav = "";
# Write the title to the output file
print OUTFILE $title . "\n";
next
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.