- or download this
2. alnum Any alphanumeric character ("[A-Za-z0-9]").
- or download this
my $re = qr{
\A # Assert start of string
...
)
\z # Assert end of string
}x;
- or download this
my $re = qr{
\A # Assert start of string
...
)
\z # Assert end of string
}xx;