With inspiration from davorg's above example, taking it
a step further (and a step further (and a step further (...))):
#!/usr/bin/perl -w
use strict;
my %trans = (
'$name' => 'Frank',
'$color' => 'Cherry Red',
'$time' => sprintf ("%d:%02d:%02d",
(localtime(time))[2,1,0]),
'$date' => sprintf ("%04d-%02d-%02d",
(localtime(time))[5] + 1900,
(localtime(time))[4] + 1,
(localtime(time))[3]),
'$dstr' => '$time on $date',
);
my ($trans_rx) = join ('|', sort { length($b) - length($a) }
sort
map { quotemeta ($_) }
keys %trans);
my ($string) = 'I\'m $name and I prefer $color objects, at least
+on $dstr';
while ($string =~ s!($trans_rx)!$trans{$1}!o) { }
print "$string\n";
For output like:
I'm Frank and I prefer Cherry Red objects, at least on 15:33:43 o
+n 2001-02-06
This version doesn't replace stray references to things like
$1.95 with nothing, but it might get caught in a loop if you
specify two entries which convert to eachother recursively
such that "$a -> $b" and "$b -> $a".
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|