37 #include <boost/algorithm/string.hpp>
49 struct lconv* lc = localeconv ();
51 boost::algorithm::replace_all (v, lc->thousands_sep,
"");
52 boost::algorithm::replace_all (v, lc->decimal_point,
".");
61 struct lconv* lc = localeconv ();
62 boost::algorithm::replace_all (v,
".", lc->decimal_point);
72 return make_raw (locale_convert<string> (v, precision, fixed));
80 return make_raw (locale_convert<string> (v, precision, fixed));
88 return make_raw (locale_convert<string> (v, precision, fixed));
96 return make_raw (locale_convert<string> (v, precision, fixed));
104 return make_raw (locale_convert<string> (v, precision, fixed));
112 return make_raw (locale_convert<string> (v, precision, fixed));
120 return make_raw (locale_convert<string> (v, precision, fixed));
128 return make_raw (locale_convert<string> (v, precision, fixed));
136 return make_raw (locale_convert<string> (v, precision, fixed));
144 return make_raw (locale_convert<string> (v, precision, fixed));
187 return string (w.begin(), w.end());
195 return locale_convert<unsigned char> (make_local (v), precision, fixed);
203 return locale_convert<unsigned short int> (make_local (v), precision, fixed);
211 return locale_convert<int> (make_local (v), precision, fixed);
219 return locale_convert<long> (make_local (v), precision, fixed);
227 return locale_convert<unsigned long> (make_local (v), precision, fixed);
235 return locale_convert<long long> (make_local (v), precision, fixed);
243 return locale_convert<unsigned long long> (make_local (v), precision, fixed);
251 return locale_convert<int>(make_local (v), precision, fixed);
259 return locale_convert<int> (make_local (v), precision, fixed);
267 return locale_convert<float> (make_local (v), precision, fixed);
275 return locale_convert<float> (make_local (v), precision, fixed);
283 return locale_convert<double> (make_local (v), precision, fixed);
291 return locale_convert<double> (make_local (v), precision, fixed);
Methods to convert to/from string using the current locale.
P raw_convert(Q, int precision=16, bool fixed=false)
Methods for conversion to/from string.