52#include "string_utilities.h"
55typedef _locale_t locale_t;
56#define freelocale _free_locale
57#define strtod_l _strtod_l
68 Locale = _create_locale(LC_NUMERIC,
"C");
70 Locale = newlocale(LC_NUMERIC_MASK,
"C", 0);
86double atof_locale_c(
const string& input)
88 static const std::regex number_format(R
"(^\s*[+-]?(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?\s*$)");
89 const char* first = input.c_str();
92 while (isspace(*first)) ++first;
95 throw InvalidNumber(
"Expecting a numeric attribute value, but only got spaces");
97 if (!std::regex_match(input, number_format))
98 throw InvalidNumber(
"Expecting a numeric attribute value, but got: " + input);
102 double value = strtod_l(first,
nullptr, numeric_c.Locale);
107 if (fabs(value) == HUGE_VAL && errno == ERANGE)
108 s <<
"This number is too large: " << input;
109 else if (fabs(value) == 0 && errno == EINVAL)
110 s <<
"Expecting a numeric attribute value, but got: " << input;
118std::string& trim_left(std::string& str)
120 while (!str.empty() && isspace((
unsigned char)str[0])) {
121 str = str.erase(0,1);
126std::string& trim_right(std::string& str)
128 while (!str.empty() && isspace((
unsigned char)str[str.size()-1])) {
129 str = str.erase(str.size()-1,1);
134std::string& trim(std::string& str)
136 if (str.empty())
return str;
137 std::string temp_str = trim_right(str);
138 return str = trim_left(temp_str);
141std::string& trim_all_space(std::string& str)
143 for (
size_t i=0; i<str.size(); i++) {
144 if (isspace((
unsigned char)str[i])) {
145 str = str.erase(i,1);
152std::string& to_upper(std::string& str)
154 for (
size_t i=0; i<str.size(); i++) str[i] = toupper(str[i]);
158std::string& to_lower(std::string& str)
160 for (
size_t i=0; i<str.size(); i++) str[i] = tolower(str[i]);
164bool is_number(
const std::string& str)
168 }
catch (InvalidNumber&) {
175std::vector <std::string> split(std::string str,
char d)
177 std::vector <std::string> str_array;
179 std::string temp =
"";
183 while (index != std::string::npos) {
184 temp = str.substr(0,index);
186 if (!temp.empty()) str_array.push_back(temp);
187 str = str.erase(0,index+1);
192 if (!temp.empty()) str_array.push_back(temp);
198std::string replace(std::string str,
const std::string& oldstr,
const std::string& newstr)
200 std::string temp = str;
201 size_t old_idx = str.find(oldstr);
202 if (old_idx != std::string::npos) {
203 temp = str.replace(old_idx, 1, newstr);