diff options
| author | Aaron Franke <arnfranke@yahoo.com> | 2020-11-29 22:43:38 -0500 |
|---|---|---|
| committer | Aaron Franke <arnfranke@yahoo.com> | 2021-01-28 07:45:01 -0500 |
| commit | e829b7aee48cfc988abea5a42bdbf02638a16513 (patch) | |
| tree | 066731a9a3a000b97df58d33dd18841ef7f0b234 /core/string/ustring.h | |
| parent | a3e3bf822761c477d3a297fe004496ffc6c7b10d (diff) | |
| download | redot-engine-e829b7aee48cfc988abea5a42bdbf02638a16513.tar.gz | |
Unify URI encoding/decoding and add to C#
http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
Diffstat (limited to 'core/string/ustring.h')
| -rw-r--r-- | core/string/ustring.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index e3c747af26..821941036f 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -409,17 +409,14 @@ public: String xml_escape(bool p_escape_quotes = false) const; String xml_unescape() const; - String http_escape() const; - String http_unescape() const; + String uri_encode() const; + String uri_decode() const; String c_escape() const; String c_escape_multiline() const; String c_unescape() const; String json_escape() const; String word_wrap(int p_chars_per_line) const; - String percent_encode() const; - String percent_decode() const; - String property_name_encode() const; bool is_valid_identifier() const; |
