Answers for "get only numeric characters from string javascript"

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 allow only numeric characters

$('#MyTextInput').on('propertychange input', function () {
  let result = $(this).val().replace(/[^\d]+/g, '');
  $(this).val(result);
});
Posted by: Guest on June-24-2021

Code answers related to "get only numeric characters from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language