Answers for "regex for numbers and decimals only"

0

regex for numbers and decimals only

const source = document.getElementById('source');
source.addEventListener('input', allowOnlyNumberAndDecimals);

function allowOnlyNumberAndDecimals(e) {
  let str = e.target.value
  const regExp = /^(\d+(\.\d+)?)$/

  let status = regExp.test(str) ? 'valid' : 'invalid'

  console.log(status + ' : ' + source.value)
}
Posted by: Guest on October-04-2021

Code answers related to "regex for numbers and decimals only"

Code answers related to "Javascript"

Browse Popular Code Answers by Language