The reason I wanted the while is because I update each code block with the number corresponding to which code block it is.
Here is an example
my $post_body ='<c>this is the first code block code</c> This is <c>an
+other code block</c>';
my $part = 1;
$part++ while $post_body =~ s/<c>(.*?)<\/c>/<a href='download?part=$p
+art'>Download Me<\/a><pre>$1<\/pre>/i;
print $post_body, "\n";
And I will have this as an output:
<a href='download?part=1'>Download Me</a><pre>this is code</pre> This
+is <a href='download?part=2'>Download Me</a><pre>more code</pre>
Am I missing something, because I still don't see how I can have the output that I want if I use the global switch.
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.