Boost.Locale
hello.cpp

Basic example of using various functions provided by this library

//
// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
//
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/locale.hpp>
#include <ctime>
#include <iostream>
int main()
{
using namespace boost::locale;
generator gen;
std::locale loc = gen("");
// Create system default locale
std::locale::global(loc);
// Make it system global
std::cout.imbue(loc);
// Set as default locale for output
std::cout << format("Today {1,date} at {1,time} we had run our first localization example") % std::time(nullptr)
<< std::endl;
std::cout << "This is how we show numbers in this locale " << as::number << 103.34 << std::endl;
std::cout << "This is how we show currency in this locale " << as::currency << 103.34 << std::endl;
std::cout << "This is typical date in the locale " << as::date << std::time(nullptr) << std::endl;
std::cout << "This is typical time in the locale " << as::time << std::time(nullptr) << std::endl;
std::cout << "This is upper case " << to_upper("Hello World!") << std::endl;
std::cout << "This is lower case " << to_lower("Hello World!") << std::endl;
std::cout << "This is title case " << to_title("Hello World!") << std::endl;
std::cout << "This is fold case " << fold_case("Hello World!") << std::endl;
}
the major class used for locale generation
Definition generator.hpp:101
std::basic_string< CharType > to_title(const CharType *begin, const CharType *end, const std::locale &loc=std::locale())
Definition conversion.hpp:180
std::basic_string< CharType > to_upper(const CharType *begin, const CharType *end, const std::locale &loc=std::locale())
Definition conversion.hpp:120
std::basic_string< CharType > to_lower(const CharType *begin, const CharType *end, const std::locale &loc=std::locale())
Definition conversion.hpp:150
std::basic_string< CharType > fold_case(const CharType *begin, const CharType *end, const std::locale &loc=std::locale())
Definition conversion.hpp:210
basic_format< char > format
Definition of char based format.
Definition format.hpp:418
std::ios_base & currency(std::ios_base &ios)
Format currency, number is treated like amount of money.
Definition formatting.hpp:174
std::ios_base & number(std::ios_base &ios)
Definition formatting.hpp:167
std::ios_base & time(std::ios_base &ios)
Format a time, number is treated as POSIX time.
Definition formatting.hpp:195
std::ios_base & date(std::ios_base &ios)
Format a date, number is treated as POSIX time.
Definition formatting.hpp:188
This is the main namespace that encloses all localization classes.
Definition boundary_point.hpp:13