Last active
June 20, 2019 11:24
-
-
Save karupanerura/cf410325872c9457fe4861fe63517cac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use utf8; | |
use feature qw/say/; | |
no warnings qw/experimental::uniprop_wildcards/; | |
say "5" =~ m!\p{nv= /(?x) \A [0-5] \z /}! ? "match!" : "mismatch!"; | |
say "5" =~ m!\p{nv= /(?x) \A [0-5] \z /}! ? "match!" : "mismatch!"; | |
say "五" =~ m!\p{nv= /(?x) \A [0-5] \z /}! ? "match!" : "mismatch!"; | |
say "6" =~ m!\p{nv= /(?x) \A [0-5] \z /}! ? "match!" : "mismatch!"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment