How do you set the cout locale to insert commas as thousands separators?
Asked Answered
P

1

8

Given the following code:

cout << 1000;

I would like the following output:

1,000

This can be done using std::locale, and the cout.imbue() function, but I fear I may be missing a step here. Can you spot it? I'm currently copying the current locale, and adding a thousands separator facet, but the comma never appears in my output.

template<typename T> class ThousandsSeparator : public numpunct<T> {
public:
    ThousandsSeparator(T Separator) : m_Separator(Separator) {}

protected:
    T do_thousands_sep() const  {
        return m_Separator;
    }

private:
    T m_Separator;
}

main() {
    cout.imbue(locale(cout.getloc(), new ThousandsSeparator<char>(',')));
    cout << 1000;
}
Perigordian answered 18/1, 2011 at 19:29 Comment(3)
Have you tried compiling the exact code you want us to believe you are using?Escent
possible duplicate of Is there a built-in function that comma-separates a number in C, C++, or JavaScript?Kala
Is there a memleak?Antin
C
6

The default implementation of do_thousands_sep already returns ','. It looks like you should override do_grouping instead. do_grouping returns an empty string by default, which means no grouping. This means groups of three digits each:

string do_grouping() const
{
    return "\03";
}
Creepie answered 18/1, 2011 at 19:42 Comment(4)
What does the "\03" represent? Is that ASCII for "end of text"? If so, why?Perigordian
@Cory: do_grouping returns a string that is treated as an array of one-char numbers that represent the size of the group. "\03" creates a string that has one and only one character with numeric value 3, which means that the groups will be of 3 digits each.Creepie
The default is not a ','. The C local uses no grouping, otherwise it is local specific.Kala
@Martin: I'm talking about the default returned form do_thousands_sep which is ','. It's not the same as 'default locale'. "Returns: A character for use as the digit group separator. The required specializations return ’,’ or L’,’."Creepie

© 2022 - 2024 — McMap. All rights reserved.