Files

49 lines
1.5 KiB
C++
Raw Permalink Normal View History

2022-02-05 20:47:29 +01:00
#pragma once
2023-09-09 13:23:17 -05:00
#include <iostream>
2021-07-13 04:33:12 +03:00
#include <string>
const std::string WHITESPACE = " \n\r\t\f\v";
2022-02-05 20:54:06 +01:00
inline std::string ltrim(const std::string& s) {
2021-07-13 04:33:12 +03:00
size_t begin = s.find_first_not_of(WHITESPACE);
return (begin == std::string::npos) ? "" : s.substr(begin);
}
2022-02-05 20:54:06 +01:00
inline std::string rtrim(const std::string& s) {
2021-07-13 04:33:12 +03:00
size_t end = s.find_last_not_of(WHITESPACE);
return (end == std::string::npos) ? "" : s.substr(0, end + 1);
}
2022-02-05 20:47:29 +01:00
inline std::string trim(const std::string& s) { return rtrim(ltrim(s)); }
2023-09-09 13:23:17 -05:00
inline std::string capitalize(const std::string& str) {
std::string result = str;
std::transform(result.begin(), result.end(), result.begin(),
[](unsigned char c) { return std::toupper(c); });
return result;
}
2024-12-31 20:15:21 +01:00
inline std::string toLower(const std::string& str) {
std::string result = str;
std::transform(result.begin(), result.end(), result.begin(),
[](unsigned char c) { return std::tolower(c); });
return result;
}
inline std::vector<std::string> split(std::string_view s, std::string_view delimiter,
int max_splits = -1) {
std::vector<std::string> result;
size_t pos = 0;
size_t next_pos = 0;
while ((next_pos = s.find(delimiter, pos)) != std::string::npos) {
result.push_back(std::string(s.substr(pos, next_pos - pos)));
pos = next_pos + delimiter.size();
if (max_splits > 0 && result.size() == static_cast<size_t>(max_splits)) {
break;
}
}
result.push_back(std::string(s.substr(pos)));
return result;
}