Skip to content

Instantly share code, notes, and snippets.

@jadeallenx
Created August 11, 2011 23:01
Show Gist options
  • Save jadeallenx/1141021 to your computer and use it in GitHub Desktop.
Save jadeallenx/1141021 to your computer and use it in GitHub Desktop.
Perl unicode
#!/usr/bin/env perl
use warnings;
use strict;
use v5.14;
use utf8;
my $number = "௪";
my $letter = "த்";
say "$number matched" if $number =~ /\d/;
say "$letter matched" if $letter =~ /\d/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment