32 #ifndef __BASE_STR_HH__
33 #define __BASE_STR_HH__
40 #include <type_traits>
52 if (off != std::string::npos) {
53 std::string::iterator begin =
s.begin();
54 s.erase(begin, begin + off);
62 if (off != std::string::npos)
63 s.erase(
s.begin() + off + 1,
s.end());
81 for (
const auto &
c :
s)
82 lower.push_back(std::tolower(
c));
91 split_first(
const std::string &
s, std::string &lhs, std::string &rhs,
char c);
97 split_last(
const std::string &
s, std::string &lhs, std::string &rhs,
char c);
105 char token,
bool ign =
true);
115 typename std::enable_if_t<std::is_integral_v<T>, T>
119 if (value.find(
'e') != std::string::npos) {
120 throw std::invalid_argument(
"Cannot convert scientific to integral");
123 if constexpr (std::is_signed_v<T>) {
124 long long r = std::stoll(value,
nullptr, 0);
125 if (
r < std::numeric_limits<T>::lowest()
126 ||
r > std::numeric_limits<T>::max()) {
127 throw std::out_of_range(
"Out of range");
129 return static_cast<T
>(
r);
131 unsigned long long r = std::stoull(value,
nullptr, 0);
132 if (
r > std::numeric_limits<T>::max())
133 throw std::out_of_range(
"Out of range");
134 return static_cast<T
>(
r);
139 typename std::enable_if_t<std::is_enum_v<T>, T>
142 auto r = __to_number<typename std::underlying_type_t<T>>(value);
143 return static_cast<T
>(
r);
147 typename std::enable_if_t<std::is_floating_point_v<T>, T>
151 long double r = std::stold(value);
152 if (
r < std::numeric_limits<T>::lowest()
153 ||
r > std::numeric_limits<T>::max()) {
154 throw std::out_of_range(
"Out of range");
156 return static_cast<T
>(
r);
169 inline std::enable_if_t<(std::is_integral_v<T> ||
170 std::is_floating_point_v<T> ||
171 std::is_enum_v<T>) &&
172 !std::is_same_v<bool, T>,
bool>
176 retval = __to_number<T>(value);
178 }
catch (
const std::out_of_range&) {
180 }
catch (
const std::invalid_argument&) {
183 panic(
"Unrecognized exception.\n");
191 to_bool(
const std::string &value,
bool &retval)
198 }
else if (
s ==
"false") {
211 bool quote =
s.find(
' ') != std::string::npos;
231 return (strncmp(
s, prefix, strlen(prefix)) == 0);
241 return (
s.compare(0, strlen(prefix), prefix) == 0);
251 return (
s.compare(0, prefix.size(), prefix) == 0);
256 #endif //__BASE_STR_HH__