diff --git a/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md b/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md index ac9e5e4c..3389d5d4 100644 --- a/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md +++ b/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md @@ -1,10 +1,10 @@ -# Вставьте после фрагмента +# Paste after fragment -Есть строка с HTML-документом. +There is a line with an HTML Document. -Вставьте после тега `` (у него могут быть атрибуты) строку `

Hello

`. +Insert after tag `` (it may have attributes) line `

Hello

`. -Например: +For instance: ```js let regexp = /ваше регулярное выражение/; @@ -20,7 +20,7 @@ let str = ` str = str.replace(regexp, `

Hello

`); ``` -После этого значение `str`: +After that value `str`: ```html

Hello