Hi, I'm not very familiar with locale-specific conversions so I may be using the wrong terminology here. This is what I want to have happen.
I want to write a function
std::string changeLocale( const std::string& str, const std::locale& loc )
such that if I call this function as follows:
changeLocale( std::string( "1.01" ), std::locale( "french_france" ) )
the output string will be "1,01"
Thanks for your help!