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
{{ message }}
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.
The regular expression ((((((((((.))))))))))\10 matches any two repeating characters.
It represents 10 capturing groups that point to the same character and a backreference to capturing group 10.
The regular expression
((((((((((.))))))))))\10
matches any two repeating characters.It represents 10 capturing groups that point to the same character and a backreference to capturing group 10.
Regexper, however, sees the
\10
as a backreference to group 1 followed by a literal"0"
: https://regexper.com/#%2F((((((((((.))))))))))%5C10%2FThe text was updated successfully, but these errors were encountered: