regex match only numbers code example
Example 1: just number regex
// https://regex101.com/r/qyq3PG/1
// or
/^[0-9]*$/
Example 2: regex pattern for positive numbers only
^[1-9]+[0-9]*$
// https://regex101.com/r/qyq3PG/1
// or
/^[0-9]*$/
^[1-9]+[0-9]*$