Skip to content

Commit

Permalink
👾 smth
Browse files Browse the repository at this point in the history
  • Loading branch information
Rnbsov authored Jun 7, 2022
1 parent a4aee3e commit 969c4e6
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Вставьте после фрагмента

Есть строка с HTML-документом.
У нас есть строка с HTML-документом.

Вставьте после тега `<body>` (у него могут быть атрибуты) строку `<h1>Hello</h1>`.
Напишите регулярное выражение которое вставляет `<h1>Hello</h1>` сразу же после тега `<body>`. У тега могут быть атрибуты.

Например:

Expand All @@ -21,6 +21,7 @@ str = str.replace(regexp, `<h1>Hello</h1>`);
```

После этого значение `str`:

```html
<html>
<body style="height: 200px"><h1>Hello</h1>
Expand Down

0 comments on commit 969c4e6

Please sign in to comment.