You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some implementations support backreferences in regular expressions such that (.*)\1 matches mama and papa. Wikipedia claims that
[...] any implementation which allows the use of backreferences, or implements the various extensions introduced by Perl, must use a backtracking implementation.
It is unclear to me what other "extensions introduced by Perl" are meant here.
The text was updated successfully, but these errors were encountered:
Some implementations support backreferences in regular expressions such that
(.*)\1
matchesmama
andpapa
. Wikipedia claims thatIt is unclear to me what other "extensions introduced by Perl" are meant here.
The text was updated successfully, but these errors were encountered: