Allow decimal numbers to contain commas when parsing, e.g. ``` 1,234,567 ``` Don't force commas to be in any specific place, e.g. this is valid ``` 12,3456,7 ``` When displaying a decimal number, format with commas every 3 digits, e.g. ``` 1,234,567 ```