14 lines
234 B
Markdown
14 lines
234 B
Markdown
importance: 5
|
|
|
|
---
|
|
|
|
# How to find an ellipsis "..." ?
|
|
|
|
Create a regexp to find ellipsis: 3 (or more?) dots in a row.
|
|
|
|
Check it:
|
|
|
|
```js
|
|
let regexp = /your regexp/g;
|
|
alert( "Hello!... How goes?.....".match(regexp) ); // ..., .....
|
|
```
|