Shouldn't BigDecimal('1234567').to_s('3F') return "1 234 567.0" (without spaces at the beginning and just before the decimal dot), but not " 1 234 567 .0", right?
We should consider this statement says nothing about the integer part, I guess now.
Shouldn't BigDecimal('1234567').to_s('3F') return "1 234 567.0" (without spaces at the beginning and just before the decimal dot), but not " 1 234 567 .0", right?
We should consider this statement says nothing about the integer part, I guess now.
Thank you for discussion.
Yes, I mean "1 234 567.0" without heading space. It's just a mistake. to_s may not be changed for consistency. Some new method will be ok.
I just couldn't remind "123 456 7.890 12" use case.
If we have a chance to change API, another formatting option like #to_s('G') can be good that works as '3F'.
Then we'll have beautiful 'E', 'F', 'G' options.
As I referred, SI confirmed 3 digit grouping policy twice(1948 and 2003). Other than 3 is not preferred way.
I think financial or business common practices follow 3 digit rule, too.
So, grouping option should have its default, and formatting with digit like '5F' will be more private.