We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a8408 commit 5050e72Copy full SHA for 5050e72
9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/task.md
@@ -1,10 +1,10 @@
1
-# Вставьте после фрагмента
+# Paste after fragment
2
3
-Есть строка с HTML-документом.
+There is a line with an HTML Document.
4
5
-Вставьте после тега `<body>` (у него могут быть атрибуты) строку `<h1>Hello</h1>`.
+Insert after tag `<body>` (it may have attributes) line `<h1>Hello</h1>`.
6
7
-Например:
+For instance:
8
9
```js
10
let regexp = /ваше регулярное выражение/;
@@ -20,7 +20,7 @@ let str = `
20
str = str.replace(regexp, `<h1>Hello</h1>`);
21
```
22
23
-После этого значение `str`:
+After that value `str`:
24
```html
25
<html>
26
<body style="height: 200px"><h1>Hello</h1>
0 commit comments