1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#pragma once
#include <string>
#include <algorithm>
#include <cctype>
namespace string
{
/**
* Converts the given input string to lowercase, using the
* C-function tolower(). The string is modified in-place.
*/
inline void to_lower(std::string& input)
{
std::transform(input.begin(), input.end(), input.begin(), [](char c) { return(static_cast<char>(::tolower(c))); });
}
/**
* Converts the given input string to lowercase, using the
* C-function tolower(), and returns a copy of the result.
*/
inline std::string to_lower_copy(const std::string& input)
{
std::string output;
output.resize(input.size());
std::transform(input.begin(), input.end(), output.begin(), [](char c) { return(static_cast<char>(::tolower(c))); });
return output;
}
/**
* Converts the given input string to uppercase, using the
* C-function toupper(). The string is modified in-place.
*/
inline void to_upper(std::string& input)
{
std::transform(input.begin(), input.end(), input.begin(), [](char c) { return(static_cast<char>(::toupper(c))); });
}
/**
* Converts the given input string to uppercase, using the
* C-function tolower(), and returns a copy of the result.
*/
inline std::string to_upper_copy(const std::string& input)
{
std::string output;
output.resize(input.size());
std::transform(input.begin(), input.end(), output.begin(), [](char c) { return(static_cast<char>(::toupper(c))); });
return output;
}
}
|