Help for this page

Select Code to Download


  1. or download this
        substr($foo, 14, 10) =~ tr/,/+/;
        $foo =~ tr/,/\t/;
        substr($foo, 14, 10) =~ tr/+/,/;
    
  2. or download this
        $foo =~ tr/,/\t/;
        substr($foo, 14, 10) =~ tr/\t/,/;