en.javascript.info/10-regular-expressions-javascript/06-regexp-quantifiers/1-find-text-manydots/task.md
Ilya Kantor e2443e8de6 ok
2017-03-19 16:59:53 +03:00

228 B

importance: 5


How to find an ellipsis "..." ?

Create a regexp to find ellipsis: 3 (or more?) dots in a row.

Check it:

let reg = /your regexp/g;
alert( "Hello!... How goes?.....".match(reg) ); // ..., .....