Help for this page

Select Code to Download


  1. or download this
    use strict;
    use feature ':5.10';
    use URI::Escape qw( uri_unescape );
    my $string = 'China's eceonomic expansion continues.';
    say uri_unescape($string);
    
  2. or download this
    use strict;
    use feature ':5.10';
    use XML::Entities;
    my $string = 'China's eceonomic expansion continues.';
    say XML::Entities::decode('all', $string);