Help for this page

Select Code to Download


  1. or download this
    sub change_text
     {
    ...
    $s =~ tr/\0 /.-/;
    print $s;
     }
    
  2. or download this
    ${^WIDE_SYSTEM_CALLS}= 1;
    use strict;
    ...
    $s =~ tr/\0 /.-/;
    print $s;
     }