en.javascript.info/9-regular-expressions/06-regexp-boundary/1-find-time-hh-mm/solution.md
Ilya Kantor fc0b18538d WIP
2019-09-04 19:35:17 +03:00

6 lines
139 B
Markdown

The answer: `pattern:\b\d\d:\d\d\b`.
```js run
alert( "Breakfast at 09:00 in the room 123:456.".match( /\b\d\d:\d\d\b/ ) ); // 09:00
```