diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-07-25 12:23:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 12:23:29 +0200 |
commit | 9e16f4a3704b76b3b7c236e29a141b3c33263667 (patch) | |
tree | b0aed8942f2f77cc3c2e00eac3f191fa1c97cfbd /core/ustring.cpp | |
parent | 46985ae0755871493003352acd7bae9b6e35c621 (diff) | |
parent | 84db7056b79010231c76b658b090265023ed01ef (diff) |
Merge pull request #20441 from AlexHolly/fix-string-format-case-placeholder
Fix format ignores case in placeholder
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r-- | core/ustring.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index f552cb13ac..5f3858cb17 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -2768,7 +2768,7 @@ String String::format(const Variant &values, String placeholder) const { val = val.substr(1, val.length() - 2); } - new_string = new_string.replacen(placeholder.replace("_", key), val); + new_string = new_string.replace(placeholder.replace("_", key), val); } else { ERR_PRINT(String("STRING.format Inner Array size != 2 ").ascii().get_data()); } @@ -2781,7 +2781,7 @@ String String::format(const Variant &values, String placeholder) const { val = val.substr(1, val.length() - 2); } - new_string = new_string.replacen(placeholder.replace("_", i_as_str), val); + new_string = new_string.replace(placeholder.replace("_", i_as_str), val); } } } else if (values.get_type() == Variant::DICTIONARY) { @@ -2801,7 +2801,7 @@ String String::format(const Variant &values, String placeholder) const { val = val.substr(1, val.length() - 2); } - new_string = new_string.replacen(placeholder.replace("_", key), val); + new_string = new_string.replace(placeholder.replace("_", key), val); } } else { ERR_PRINT(String("Invalid type: use Array or Dictionary.").ascii().get_data()); |