Hy guys i need to implement a money format data validation, i need this regex only accept the following formats: Note: Only accept two or one positions for decimal before dot, the commas are optional every 3 digits
1
1.0
1.00
100.00
1,000.00
1000.00
111,000.00
111000.00
999,999,999.00
Assuming the Dot and commas are optionals.
Wrong Formats:
,1.00
1.
1,,00.00
1.000
etc