Help for this page

Select Code to Download


  1. or download this
        $str = join '', map {$_ & 0x7f} split //, $str;
    
  2. or download this
        $str =~ s/(.)/$1 & 0x7f/eg;