Skip to content

Instantly share code, notes, and snippets.

@packrat386
Last active September 23, 2015 04:39
Show Gist options
  • Save packrat386/cb451c0c08f68a219a31 to your computer and use it in GitHub Desktop.
Save packrat386/cb451c0c08f68a219a31 to your computer and use it in GitHub Desktop.
Filter everything but digits
$str = "1-800-123-4567";
print "$str\n";
$str =~ s/[^0-9]//g;
print "$str\n";
1-800-123-4567
18001234567
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment