Merge pull request #1975 from Sierraffinity/jsonproc-fix
jsonproc: filter out every non-alphanumeric character
This commit is contained in:
commit
232eab4bee
1 changed files with 5 additions and 2 deletions
|
@ -105,10 +105,13 @@ int main(int argc, char *argv[])
|
||||||
});
|
});
|
||||||
|
|
||||||
env.add_callback("cleanString", 1, [](Arguments& args) {
|
env.add_callback("cleanString", 1, [](Arguments& args) {
|
||||||
string badChars = ".'{} \n\t-\u00e9";
|
|
||||||
string str = args.at(0)->get<string>();
|
string str = args.at(0)->get<string>();
|
||||||
for (unsigned int i = 0; i < str.length(); i++) {
|
for (unsigned int i = 0; i < str.length(); i++) {
|
||||||
if (badChars.find(str[i]) != std::string::npos) {
|
// This code is not Unicode aware, so UTF-8 is not easily parsable without introducing
|
||||||
|
// another library. Just filter out any non-alphanumeric characters for now.
|
||||||
|
// TODO: proper Unicode string normalization
|
||||||
|
if ((i == 0 && isdigit(str[i]))
|
||||||
|
|| !isalnum(str[i])) {
|
||||||
str[i] = '_';
|
str[i] = '_';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue