Languages
[Edit]
EN

JavaScript - split string using regex

8 points
Created by:
Blessing-D
574

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.

Alternative titles

  1. JavaScript - split string using RegExp
  2. JavaScript - split string using regular expression
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join