en.javascript.info/10-regular-expressions-javascript/07-regexp-greedy-and-lazy/1-lazy-greedy/task.md
Ilya Kantor e2443e8de6 ok
2017-03-19 16:59:53 +03:00

8 lines
278 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Совпадение для /d+? d+/
Что будет при таком поиске, когда сначала стоит ленивый, а потом жадный квантификаторы?
```js
"123 456".match(/\d+? \d+/g) ); // какой результат?
```