From 6fe415ca7f439d56321d327dfdd18105a09a70d1 Mon Sep 17 00:00:00 2001 From: Dmitry Koteroff Date: Fri, 15 Dec 2017 22:23:58 +0300 Subject: Added rsplit() for String class Docs updated --- core/ustring.h | 1 + 1 file changed, 1 insertion(+) (limited to 'core/ustring.h') diff --git a/core/ustring.h b/core/ustring.h index 6541642bd1..c0cf5042e0 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -163,6 +163,7 @@ public: String get_slicec(CharType p_splitter, int p_slice) const; Vector split(const String &p_splitter, bool p_allow_empty = true, int p_maxsplit = 0) const; + Vector rsplit(const String &p_splitter, bool p_allow_empty = true, int p_maxsplit = 0) const; Vector split_spaces() const; Vector split_floats(const String &p_splitter, bool p_allow_empty = true) const; Vector split_floats_mk(const Vector &p_splitters, bool p_allow_empty = true) const; -- cgit v1.2.3