|
OpenEnroth 9cf7432
|
Functions | |
| std::string | toHexDump (std::string_view s, size_t groupSize) |
| std::string | replaceAll (std::string_view text, std::string_view what, std::string_view replacement) |
| std::string | replaceAll (std::string_view text, char what, char replacement) |
| std::string replaceAll | ( | std::string_view | text, |
| char | what, | ||
| char | replacement | ||
| ) |
| std::string replaceAll | ( | std::string_view | text, |
| std::string_view | what, | ||
| std::string_view | replacement | ||
| ) |
| std::string toHexDump | ( | std::string_view | s, |
| size_t | groupSize = 0 |
||
| ) |
toHexDump("0123", 2) is "3132 3334".
| s | String to convert. |
| groupSize | Size of a single group, in bytes. |