diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-04-24 11:38:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 11:38:36 +0200 |
commit | bd885ed7047dff641b96f5cf026d6ceb2a5a8ba8 (patch) | |
tree | e0409e7a5282afe480aa5d5a4e184be5ede37c0c /core | |
parent | 9acfb0782c818373fcb4bf13425cb7239f36893b (diff) | |
parent | 4677c0fbb882417bc9760c64ef730e454a0922ef (diff) |
Merge pull request #8469 from Melix19/patch-2
Update snake_case splitting
Diffstat (limited to 'core')
-rw-r--r-- | core/ustring.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index d2d4b6507f..b01f680dd6 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -513,14 +513,16 @@ String String::camelcase_to_underscore(bool lowercase) const { for (size_t i = 1; i < this->size(); i++) { bool is_upper = cstr[i] >= A && cstr[i] <= Z; + bool is_number = cstr[i] >= '0' && cstr[i] <= '9'; bool are_next_2_lower = false; bool was_precedent_upper = cstr[i - 1] >= A && cstr[i - 1] <= Z; + bool was_precedent_number = cstr[i - 1] >= '0' && cstr[i - 1] <= '9'; if (i + 2 < this->size()) { are_next_2_lower = cstr[i + 1] >= a && cstr[i + 1] <= z && cstr[i + 2] >= a && cstr[i + 2] <= z; } - bool should_split = ((is_upper && !was_precedent_upper) || (was_precedent_upper && is_upper && are_next_2_lower)); + bool should_split = ((is_upper && !was_precedent_upper && !was_precedent_number) || (was_precedent_upper && is_upper && are_next_2_lower) || (is_number && !was_precedent_number)); if (should_split) { new_string += this->substr(start_index, i - start_index) + "_"; start_index = i; |