xtd 0.2.0
sprintf_character.cpp

Shows how to use xtd::string::sprintf method.

#include <xtd/console>
#include <xtd/environment>
#include <xtd/string>
using namespace xtd;
auto main() -> int {
console::out << string::sprintf("%c", 'a') << environment::new_line;
//console::out << string::sprintf("%c", L'\u4eb0') << environment::new_line; // Does not work correctly
console::out << string::sprintf("%c", u8'a') << environment::new_line;
//console::out << string::sprintf("%c", u'\u4eb0') << environment::new_line; // Does not work correctly
//console::out << string::sprintf("%c", U'\U0001F428') << environment::new_line; // Does not work correctly
}
// This code produces the following output :
//
// a
// a
static std::ostream out
Gets the standard output stream. A std::basic_ostream<char_t> that represents the standard output str...
Definition console.hpp:52
static xtd::string new_line() noexcept
Gets the newline string defined for this environment.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8