Skip to content

Instantly share code, notes, and snippets.

@plicease
Last active August 29, 2015 14:19
Show Gist options
  • Save plicease/785e8fb6e8de52d7406e to your computer and use it in GitHub Desktop.
Save plicease/785e8fb6e8de52d7406e to your computer and use it in GitHub Desktop.
match a phone number
my $text = <$fh>;
# regular expression or "regex"
if($text =~ /([0-9]{3}-[0-9]{3}-[0-9]{4})/)
{
say $1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment