diff --git a/9-regular-expressions/12-regexp-backreferences/article.md b/9-regular-expressions/12-regexp-backreferences/article.md index 83beb803..b80fa85c 100644 --- a/9-regular-expressions/12-regexp-backreferences/article.md +++ b/9-regular-expressions/12-regexp-backreferences/article.md @@ -57,7 +57,7 @@ In the replacement string we use a dollar sign: `pattern:$1`, while in the patte If a regexp has many parentheses, it's convenient to give them names. -To reference a named group we can use `pattern:\k<имя>`. +To reference a named group we can use `pattern:\k`. In the example below the group with quotes is named `pattern:?`, so the backreference is `pattern:\k`: