OK, I've been at this problem for at least an hour and I am starting to get very frustrated. I've got a random HTML table in a string and I want to change the width dimension of the table to 300 pixels using the s/// operator. I require that it work with a table that fails to use quotes, and that the original dimension can be in pixels or percentage.
Here's the closest I've come so far:
$rep_contact_info =~ s/(<\s*table.*?width\s*=\s*"*).*?("*.*?>)/{$1}300
+{$2}/si;
But it results in the following bad output:
{<table width="}300{620" border="0">}
Obviously, I'm having problems replacing the original dimension. I'm also having problems with those brackets showing up which I though were metacharacters. Another pair of more experienced eyeballs on this problem will be much appreciated. Thanks.
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop";
$nysus = $PM . $MCF;
Click here if you love Perl Monks
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.