EN
TypeScript - check if string contains any numbers
0 points
In this article, we would like to show you how to check if the string contains any numbers in TypeScript.
Quick solution:
xxxxxxxxxx
1
const text: string = 'Example 123';
2
3
if (text.match(/\d+/g)) {
4
console.log('The string contains a number.');
5
}
In this example, we use match()
method to check if the text
string contains any numbers.
xxxxxxxxxx
1
const regex: RegExp = /\d+/g;
2
const text: string = 'Example number: 23.';
3
4
if (text.match(regex)) {
5
console.log('The string contains a number.');
6
}
Output:
xxxxxxxxxx
1
The string contains a number.
Note:
The
match()
method used with/g
flag returns all results matching the complete regular expression (regex
). If nothing matches returnsnull
.