Languages
[Edit]
EN

TypeScript - split string using regex

0 points
Created by:
Selina-Miranda
737

In this short article, we would like to show how to split some strings using a regular expression as a separator in TypeScript.

Quick solution:

const phoneNumber: string = '+48 888-444-000';
const separator: RegExp = /[ -]+/;

const parts: string[] = phoneNumber.split(separator);

console.log(parts);

Output:

['+48', '888', '444', '000']

Where: /[ -]+/ means multiple spaces, dashes, or mix of them.

See also

  1. JavaScript - split string using regex

Alternative titles

  1. TypeScript - split string using RegExp
  2. TypeScript - 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