Languages
[Edit]
EN

TypeScript - get substring by regex

0 points
Created by:
Selina-Miranda
737

In this article, we would like to show you how to get substring by regex in TypeScript​​​​​.

Quick solution:

const result: string[] = text.match(regex);

 

Practical example

In this example, we use match() method with a regular expression to get the 'value' from the text.

const text: string = 'Example value...';
const regex: RegExp = /value/;

const result: string[] = text.match(regex);

if (result) {
  console.log(result[0]); // 'value'
}

References

  1. JavaScript - get substring by regex
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