blob: 49b6a0a1edb1c2841ef19a3ddca4e5b4a7ca6241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/env perl
use strict;
use warnings;
use feature qw{ postderef say signatures state };
no warnings qw{ experimental };
use Getopt::Long;
my $file = 'phone_numbers.txt';
GetOptions( 'file=s' => \$file, );
if ( -f $file && open my $fh, '<', $file ) {
# remove newlines from the numbers
my @numbers = map { chomp $_; $_ } <$fh>;
close $fh;
say join "\n", ( grep { is_phone_number($_) } @numbers ), '';
}
sub is_phone_number( $string ) {
return 1 if $string =~ m{
^\ * # starts with maybe space
\d{4} # then has four digits
\ # then one space
\d{10} # then has ten digits
\s*$ # with maybe ending spaces
}mix;
return 1 if $string =~ m{
^\ * # starts with maybe space
\+\d{2} # then has a plus sign and two digits
\ + # then one or more space
\d{10} # then has ten digits
\s*$ # with maybe ending spaces
}mix;
return 1 if $string =~ m{
^\ * # starts with maybe space
\(\d{2}\) # then has two digits within parens
\ + # then one or more space
\d{10} # then has eight digits
\s*$ # with maybe ending spaces
}mix;
return 0;
}
|