I have a string with a value that ranges from any negative number to any positive number. I only want to match on the absolute value of that number equal to or greater than 120.
Ex. I have -843 I need to know if that number is greater than 120.
Ex. I have 1002 I need to know if that number is greater than 120.
Ex. I have 22, no match.
Ex. I have -119, no match.
I started working this but got stuck after 3 digits. The number can be any number.
.*([1-9][2-9]\d)$