perlretut , ( ) \g1. 5.14. 5.12.2, \1.
:
use strict; use warnings;
use 5.12.2;
use feature qw(say);
for (qw/ azalea baobab cyclic deadend teeeeeestest doesnotwork /) {
say if m/^([a-z])[^\1]+\1[^\1]+\1$/i;
}
YAPE:: Regex::
use YAPE::Regex::Explain;
print YAPE::Regex::Explain->new(qr/^([a-z])[^\1]+\1[^\1]+\1$/i)->explain();
:
The regular expression:
(?i-msx:^([a-z])[^\1]+\1[^\1]+\1$)
matches as follows:
use YAPE::Regex::Explain;
print YAPE::Regex::Explain->new(qr/^([a-z])[^\1]+\1[^\1]+\1$/i)->explain();
NODE EXPLANATION
(?i-msx: group, but do not capture (case-insensitive)
(with ^ and $ matching normally) (with . not
matching \n) (matching whitespace and
normally):
^ the beginning of the string
( group and capture to \1:
[a-z] any character of: 'a' to 'z'
) end of \1
[^\1]+ any character except: '\1' (1 or more
times (matching the most amount possible))
\1 what was matched by capture \1
[^\1]+ any character except: '\1' (1 or more
times (matching the most amount possible))
\1 what was matched by capture \1
$ before an optional \n, and the end of the
string
) end of grouping
. , perl -e 'print if m/^([a-z])[^\1]+\1[^\1]+\1$/i'.
, perl -w -e 'print if m/(as)$1/', :
$ perl -w -e 'print if m/(a)$1/' asdf
Use of uninitialized value $1 in regexp compilation at -e line 1.
Use of uninitialized value $_ in pattern match (m//) at -e line 1.
, ololololo.