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);
114 typename std::enable_if_t<std::is_integral<T>::value &&
115 std::is_signed<T>::value, T>
119 if (value.find(
'e') != std::string::npos) {
120 throw std::invalid_argument(
"Cannot convert scientific to integral");
123 long long r = std::stoll(value,
nullptr, 0);
124 if (
r < std::numeric_limits<T>::lowest()
125 ||
r > std::numeric_limits<T>::max()) {
126 throw std::out_of_range(
"Out of range");
128 return static_cast<T
>(
r);
132 typename std::enable_if_t<std::is_integral<T>::value &&
133 !std::is_signed<T>::value, T>
137 if (value.find(
'e') != std::string::npos) {
138 throw std::invalid_argument(
"Cannot convert scientific to integral");
141 unsigned long long r = std::stoull(value,
nullptr, 0);
142 if (
r > std::numeric_limits<T>::max())
143 throw std::out_of_range(
"Out of range");
144 return static_cast<T
>(
r);
148 typename std::enable_if_t<std::is_enum<T>::value, T>
152 if (value.find(
'e') != std::string::npos) {
153 throw std::invalid_argument(
"Cannot convert scientific to integral");
156 return static_cast<T
>(
r);
160 typename std::enable_if_t<std::is_floating_point<T>::value, T>
164 long double r = std::stold(value);
165 if (
r < std::numeric_limits<T>::lowest()
166 ||
r > std::numeric_limits<T>::max()) {
167 throw std::out_of_range(
"Out of range");
169 return static_cast<T
>(
r);
182 inline std::enable_if_t<(std::is_integral<T>::value ||
183 std::is_floating_point<T>::value ||
184 std::is_enum<T>::value) &&
185 !std::is_same<bool, T>::value,
bool>
189 retval = __to_number<T>(value);
191 }
catch (
const std::out_of_range&) {
193 }
catch (
const std::invalid_argument&) {
196 panic(
"Unrecognized exception.\n");
204 to_bool(
const std::string &value,
bool &retval)
211 }
else if (
s ==
"false") {
224 bool quote =
s.find(
' ') != std::string::npos;
244 return (strncmp(
s, prefix, strlen(prefix)) == 0);
254 return (
s.compare(0, strlen(prefix), prefix) == 0);
264 return (
s.compare(0, prefix.size(), prefix) == 0);
269 #endif //__BASE_STR_HH__