From c0f7845feb3db313f449b519838d7ba9814dbee4 Mon Sep 17 00:00:00 2001 From: Serge <64706187+Serge044@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:53:24 +0300 Subject: [PATCH] Fixed incorrect output with current data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also, if we want to show a match (rather than a non-match) in this example, we can for example change the word 'ink' to 'чорнил', so we will get a response of '0' (the position of the first match). --- 9-regular-expressions/17-regexp-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/17-regexp-methods/article.md b/9-regular-expressions/17-regexp-methods/article.md index d66299375..216228e6b 100644 --- a/9-regular-expressions/17-regexp-methods/article.md +++ b/9-regular-expressions/17-regexp-methods/article.md @@ -111,7 +111,7 @@ alert('12, 34, 56'.split(/,\s*/)) // array of ['12', '34', '56'] ```js run let str = "Чорнил краплина – мільйонів думок причина"; -alert( str.search( /ink/i ) ); // 8 (позиція першого збігу) +alert( str.search( /ink/i ) ); // -1 ('ink' не знайдено) ``` **Важливе обмеження: `search` знаходить лише перший збіг.**