Languages
[Edit]
EN

TypeScript - check if string contains only digits

0 points
Created by:
Paluskitten
356

In this article, we would like to show you how to check if the string contains only digits in TypeScript.

Quick solution:

 

Practical example

Edit

In this example, we present how to check if the string contains only digits using regex.

Where:

  • \d - stands for "digit" and matches any digit character (0-9),
  • ^ - matches the beginning of the string,
  • + - matches one or more of the preceding token (in our case one or more \d),
  • $ - matches the end of the string.

Runnable example:

Output:

1
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