Removing spaces from telephone numbers…it can't be done (at least not by T-mobile)
my $number = "555 123 4567";
$number =~ s/[^\d]//g;
Digital communicator
The personal website of Dr Keith Bradnam. Sharing occasional observations on digital communicaion, website analytics and life in general.
my $number = "555 123 4567";
$number =~ s/[^\d]//g;