Languages
[Edit]
EN

JavaScript - check if string contains only digits

6 points
Created by:
a_horse
538

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

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:

See also

Edit
  1. JavaScript - check if character is digit

References

Edit
  1. RegExp.prototype.test() - JavaScript | MDN
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.

JavaScript - String (popular problems)

JavaScript - check if string contains only digits
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