moneypunct::decimal_point
Returns a locale-specific sequence of elements to use as a decimal point symbol.
CharType decimal_point( ) const;
Return Value
A locale-specific sequence of elements to use as a decimal point symbol.
Remarks
The member function returns do_decimal_point.
Example
// moneypunct_decimal_pt.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <sstream>
using namespace std;
int main( )
{
locale loc("german_germany");
const moneypunct < char, true > &mpunct = use_facet
< moneypunct < char, true > >(loc);
cout << loc.name( ) << " international decimal point "
<< mpunct.decimal_point( ) << endl;
const moneypunct < char, false> &mpunct2 = use_facet
< moneypunct < char, false> >(loc);
cout << loc.name( ) << " domestic decimal point "
<< mpunct2.decimal_point( ) << endl;
}
German_Germany.1252 international decimal point , German_Germany.1252 domestic decimal point ,
Requirements
Header: <locale>
Namespace: std