std::money_put
From cppreference.com
                    
                                        
                    
                    
                                                            
                    | Defined in header <locale>
  | ||
| template< class charT,           class OutputIterator = std::ostreambuf_iterator<charT> | ||
Class std::money_put encapsulates the rules for formatting monetary values as strings. The standard I/O manipulator std::put_money uses the std::money_put facet of the I/O stream's locale.
Two specializations and two partial specializations are provided by the standard library and are implemented by all locale objects created in a C++ program:
| Defined in header <locale>  | |
| std::money_put<char> | creates narrow string representations of monetary values | 
| std::money_put<wchar_t> | creates wide string representations of monetary values | 
| std::money_put<char, OutputIterator> | creates narrow string representations of monetary values using custom output iterator | 
| std::money_put<wchar_t, OutputIterator> | creates wide string representations of monetary values using custom output iterator | 
| Contents | 
[edit] Member types
| Member type | Definition | 
| char_type | charT | 
| string_type | std::basic_string<charT> | 
| iter_type | OutputIterator | 
[edit] Member objects
| Member name | Type | 
| id (static) | std::locale::id | 
[edit] Member functions
| constructs a new money_put facet (public member function) | |
| destructs a money_put facet (protected member function) | |
| invokes do_put (public member function) | |
[edit] Protected member functions
| [virtual] | formats a monetary value and writes to output stream (virtual protected member function) | 
[edit] Example
#include <iostream> #include <locale> #include <iomanip> #include <iterator> int main() { // using the IO manipulator std::cout.imbue(std::locale("en_US.UTF-8")); std::cout << "american locale: " << std::showbase << std::put_money(12345678.9)<< '\n'; // using the facet directly std::cout.imbue(std::locale("de_DE")); std::cout << "german locale: " ; std::ostreambuf_iterator<char> out(std::cout); auto& f = std::use_facet<std::money_put<char>>(std::cout.getloc()); f.put(out, false, std::cout, std::cout.fill(), 12345678.9 ); std::cout << '\n'; }
Output:
american locale: $123,456.79 german locale: 123.456,79 EUR
[edit] See also
| defines monetary formatting parameters used by std::money_get and std::money_put (class template) | |
| parses and constructs a monetary value from an input character sequence (class template) | |
| (C++11) | formats and outputs a monetary value (function template) | 

