en.javascript.info/10-regular-expressions/07-regexp-quantifiers/1-find-text-manydots/task.md
Ilya Kantor 97c8f22bbb up
2017-03-21 17:14:05 +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) ); // ..., .....