regex for 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]*$
Example 3: regex for numbers
Regex regex = new Regex(@"^\d$");
Example 4: regex all not numbers
echo 1a2b3c | sed 's/[^0-9]//g' #Replaces all not numbers
abc