Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    use HTML::Entities qw(decode_entities);
    my $htmlstring = 'This text contains an encoded "<" tag';
    print decode_entities($htmlstring),"\n";
    
  2. or download this
    This text contains an encoded "<" tag