Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    while ( <> ) {
    ...
        }
        return 1;
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    while ( <> ) {
    ...
        $x =~ tr/0-9//s;
        length $x == 10 ? return 1 : return 0;
    }