^\d{1,12}$|(?=^.{1,15}$)^\d+\.\d{1,2}$
This is the expression I currently have.
I want the max limit to be 100 000 000 000 with optional two decimals max, but if the user only adds 1 decimal, they can bump the value to 100 000 000 0001.1 if they want to.
How can I approach this issue? and is there any way to make 100 000 000 000 the max value? (Not 999 999 999 999)