Perl ile 5.10 use re 'debug';
,. (Veya debugcolor
Yığın Taşması üzerindeki çıktıyı düzgün biçimlendiremiyorum.)
$ perl -Mre = hata ayıklama -e '"foobar" = ~ / (.) \ 1 /'
REx "(.) \ 1" derleniyor
Final programı:
1: AÇIK1 (3)
3: REG_ANY (4)
4: KAPAT1 (6)
6: REF1 (8)
8: SON (0)
minlen 1
REx "(.) \ 1" ile "foobar" eşleştiriliyor
0 <> <foobar> | 1: OPEN1 (3)
0 <> <foobar> | 3: REG_ANY (4)
1 <f> <oobar> | 4: CLOSE1 (6)
1 <f> <oobar> | 6: REF1 (8)
başarısız oldu...
1 <f> <oobar> | 1: OPEN1 (3)
1 <f> <oobar> | 3: REG_ANY (4)
2 <fo> <obar> | 4: CLOSE1 (6)
2 <fo> <obar> | 6: REF1 (8)
3 <foo> <bar> | 8: SON (0)
Maç başarılı!
Boşaltma REx: "(.) \ 1"
Ayrıca, daha okunabilir hale getirmek için normal ifadelere boşluk ve yorumlar ekleyebilirsiniz. Perl'de bu, /x
değiştirici ile yapılır . İle pcre
, orada PCRE_EXTENDED
bayrak.
"foobar" =~ /
(.) # any character, followed by a
\1 # repeat of previously matched character
/x;
pcre *pat = pcre_compile("(.) # any character, followed by a\n"
"\\1 # repeat of previously matched character\n",
PCRE_EXTENDED,
...);
pcre_exec(pat, NULL, "foobar", ...);