Help for this page

Select Code to Download


  1. or download this
    my $startCh = chr(0);
    my $endCh = chr(31);
    
    $text =~ s/[$startCh-$endCh]//g;
    
  2. or download this
    $startCh = chr(0);
    $endCh = chr(9);
    ...
    $endCh = chr(31);
    
    $text ==~ s/[$startCh-$endCh]//g;