From 2fd1a4ea0ef538c74ddf325f01c4a49624d55cf2 Mon Sep 17 00:00:00 2001 From: Tobi Obeck <13554426+TobiObeck@users.noreply.github.com> Date: Tue, 29 Oct 2019 14:58:38 +0100 Subject: [PATCH] removes russian text chunk from english text --- 9-regular-expressions/11-regexp-groups/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/11-regexp-groups/article.md b/9-regular-expressions/11-regexp-groups/article.md index acc59b7c..ab25066d 100644 --- a/9-regular-expressions/11-regexp-groups/article.md +++ b/9-regular-expressions/11-regexp-groups/article.md @@ -71,7 +71,7 @@ The method `str.match(regexp)`, if `regexp` has no flag `g`, looks for the first 1. At index `0`: the full match. 2. At index `1`: the contents of the first parentheses. -3. На позиции `2`: the contents of the second parentheses. +3. At index `2`: the contents of the second parentheses. 4. ...and so on... For instance, we'd like to find HTML tags `pattern:<.*?>`, and process them. It would be convenient to have tag content (what's inside the angles), in a separate variable.