Help for this page

Select Code to Download


  1. or download this
    #  One way...
    $s = join '', ( split //, $s )[ 1 .. length($s) - 1 ];
    print $s, $/;
    
  2. or download this
    $s = pack 'A*', unpack( 'xA*', $s ); # ASCII only, please ;)
    print $s, $/;