Help for this page

Select Code to Download


  1. or download this
    while ($string =~ qr(...)) {
        $string = qq($1'$2);
    }
    
  2. or download this
    $string = join('_',
        map {
    ...
            : $_
        } split( q{_}, $string )
    );