Hey Guys I want to get regex for numbers which are greater than 105 and above for all 3 digit number and they can be follow by 3 or 2 decimal like 105.1 ,109.11 like this.
I tried with
^\s*((105|\d{3,})\.\d+)\s*$
but no luck
Hey Guys I want to get regex for numbers which are greater than 105 and above for all 3 digit number and they can be follow by 3 or 2 decimal like 105.1 ,109.11 like this.
I tried with
^\s*((105|\d{3,})\.\d+)\s*$
but no luck