How to find an ellipsis "..." ?
importance: 5
Create a regexp to find ellipsis: 3 (or more?) dots in a row.
Check it:
let regexp = /your regexp/g;
alert( "Hello!... How goes?.....".match(regexp) ); // ..., .....
We want to make this open-source project available for people all around the world.
Help to translate the content of this tutorial to your language!
Create a regexp to find ellipsis: 3 (or more?) dots in a row.
Check it:
let regexp = /your regexp/g;
alert( "Hello!... How goes?.....".match(regexp) ); // ..., .....