Answers for "javascript string only no numbers"

6

js extract only numbers from string

"1.23-45/6$7.8,9".replace(/[^0-9]/g,'')

// Response: "123456789"
Posted by: Guest on August-06-2020
0

javascript string get numbers

function retnum(str) { 
    var num = str.replace(/[^0-9]/g, ''); 
    return parseInt(num,10); 
}
Posted by: Guest on April-16-2022

Code answers related to "javascript string only no numbers"

Code answers related to "Javascript"

Browse Popular Code Answers by Language