in reply to twig_print_outside_roots replaces " with "e; and ' with '
G'day Dimitar,
You can write a very simple function, to convert those (and other) entities back to their original characters, if that's what you need:
#!/usr/bin/env perl use strict; use warnings; { my %char_for_ent = qw{" " ' ' < < > >}; my $re = qr/(?x: ( @{[ join '|', keys %char_for_ent ]} ) )/; sub ent2char { $_[0] =~ s/$re/$char_for_ent{$1}/g; $_[0] } } print "IN: ${_}OUT: ", ent2char($_) while <DATA>; __DATA__ I said, "My name's Ken". <pre>Here's some <em>emphasis</em>.</pre>
Output:
IN: I said, "My name's Ken". OUT: I said, "My name's Ken". IN: <pre>Here's some <em>emphasis</em>.</pre> OUT: <pre>Here's some <em>emphasis</em>.</pre>
I suspect there may be a CPAN module with this functionality. I don't know for certain: perhaps another monk does.
— Ken
|
|---|