i have this JSON (at the link), and i need to remove some strings from it, i’m a starter at regular expressions so i would like to know how to select any numbers as i put on the Regex:
My pattern its that:
"[0-9]": {
But the pattern using 0-9 just give me 1,2,3,4,5,6,7,8,9
but it doesn’t cover the number 12, 100, 234, and etc… someone could help me here?
I think what you are wanting is this:
which means “the numbers zero through nine, repeated one or more times”.
This allows trailing zeroes, which may be what you want, but you might prefer this instead:
which means “a digit from one to nine, followed by a digit from zero to nine, repeated zero or more times”.