How to extract a number from string in TypeScript

2 Answers

0 votes
const s = 'typescript 5 programming';
 
const str_n = s.replace(/\D/g, ''); 
console.log(str_n);
 
let n;
 
if (str_n !== '') {
    n = Number(str_n); 
}
 
console.log(n)
 
 
 
 
 
/*
run:
 
"5"
5
 
*/

 



answered Feb 4, 2022 by avibootz
0 votes
const s = 'typescript 5 programming';
 
const arr = s.match(/\d+/);
console.log(arr);
 
let n;
 
if (arr !== null) {
    n = Number(arr[0]); 
}
 
console.log(n)
 
 
 
 
 
/*
run:
 
["5"]
5
 
*/

 



answered Feb 4, 2022 by avibootz
...