diff options
Diffstat (limited to 'core/string/ustring.h')
| -rw-r--r-- | core/string/ustring.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 821941036f..a56845deff 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -416,9 +416,14 @@ public: String c_unescape() const; String json_escape() const; String word_wrap(int p_chars_per_line) const; + Error parse_url(String &r_scheme, String &r_host, int &r_port, String &r_path) const; String property_name_encode() const; + // node functions + static const String invalid_node_name_characters; + String validate_node_name() const; + bool is_valid_identifier() const; bool is_valid_integer() const; bool is_valid_float() const; |