Answers for "extract integer part from string javascript"

2

javascript extract number from string

// Html: <span id="foo">280ms</span>

var text = $('#foo').text();
var number = parseInt(text, 10);
alert(number);

// parseInt('ms120'.replace(/[^0-9\.]/g, ''), 10);
Posted by: Guest on May-06-2020
0

how to get the integer part of a string in javascript

str1 = "test123.00".replace ( /[^\d.]/g, '' );
  str2 = "yes50.00".replace ( /[^\d.]/g, '' );
  total = parseInt(str1, 10) + parseInt(str2, 10);
  alert(total);
Posted by: Guest on August-25-2021

Code answers related to "extract integer part from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language