![]() |
Deskflow 1.25.0.128
Keyboard and mouse sharing utility
|
std::string utilities More...
Classes | |
| class | CaselessCmp |
| Case-insensitive comparisons. More... | |
Functions | |
| std::string | format (const char *fmt,...) |
| Format positional arguments. | |
| std::string | vformat (const char *fmt, va_list) |
| Format positional arguments. | |
| std::string | sprintf (const char *fmt,...) |
| Print a string using sprintf-style formatting. | |
std::string utilities
Provides functions for string manipulation.
| std::string deskflow::string::format | ( | const char * | fmt, |
| ... ) |
Format positional arguments.
Format a string using positional arguments. fmt has literal characters and conversion specifications introduced by \':
%'
All arguments in the variable list are const char*. Positional elements are indexed from 1.
| std::string deskflow::string::sprintf | ( | const char * | fmt, |
| ... ) |
Print a string using sprintf-style formatting.
Equivalent to sprintf() except the result is returned as a String.
| std::string deskflow::string::vformat | ( | const char * | fmt, |
| va_list | ) |
Format positional arguments.
Same as format() except takes va_list.