EN
JavaScript - split string using regex
8
points
In this short article, we would like to show how to split some strings using a regular expression as separator in JavaScript.
Quick solution:
// ONLINE-RUNNER:browser;
const number = '+48 888-444-000';
const separator = /[ -]+/;
const parts = number.split(separator);
console.log(parts); // ['+48', '888', '444', '000']
Where: /[ -]+/
means multiple spaces, dashes or mix of them.