Skip to content

Commit 5050e72

Browse files
authored
Translated tasks to English
1 parent a4a8408 commit 5050e72

File tree

1 file changed

+5
-5
lines changed
  • 9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head

1 file changed

+5
-5
lines changed

9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Вставьте после фрагмента
1+
# Paste after fragment
22

3-
Есть строка с HTML-документом.
3+
There is a line with an HTML Document.
44

5-
Вставьте после тега `<body>` (у него могут быть атрибуты) строку `<h1>Hello</h1>`.
5+
Insert after tag `<body>` (it may have attributes) line `<h1>Hello</h1>`.
66

7-
Например:
7+
For instance:
88

99
```js
1010
let regexp = /ваше регулярное выражение/;
@@ -20,7 +20,7 @@ let str = `
2020
str = str.replace(regexp, `<h1>Hello</h1>`);
2121
```
2222

23-
После этого значение `str`:
23+
After that value `str`:
2424
```html
2525
<html>
2626
<body style="height: 200px"><h1>Hello</h1>

0 commit comments

Comments
 (0)