Answers for "regular expression to match many numbers in js"

3

just number regex js

// https://regex101.com/r/qyq3PG/1
// or 
/^[0-9]*$/
Posted by: Guest on July-11-2020
0

javascript regex One or more occurrences of the pattern

// Regular expression 1 or more occurrences of the pattern
console.log(/'\d+'/.test("'123'")); // true
console.log(/'\d+'/.test("''")); // false

let cartoonCrying = /boo+(hoo+)+/i;
console.log(cartoonCrying.test("Boohoooohoohooo"));// true
Posted by: Guest on June-28-2020

Code answers related to "regular expression to match many numbers in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language