Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
        return $str ? $str : 0;
    }
    
  2. or download this
    my $str = "data.csv";
    $str =~ s/\D//g;
    $str = $str ? $str : 0;
    
    print $str;