|
| std::string OPENFLUID_API | openfluid::tools::toLowerCase (const std::string &Str) |
| |
| std::string OPENFLUID_API | openfluid::tools::toUpperCase (const std::string &Str) |
| |
| std::string OPENFLUID_API | openfluid::tools::trimLeft (const std::string &Str) |
| |
| std::string OPENFLUID_API | openfluid::tools::trimRight (const std::string &Str) |
| |
| std::string OPENFLUID_API | openfluid::tools::trim (const std::string &Str) |
| |
| template<typename T > |
| bool | openfluid::tools::toNumeric (const std::string &Str, T &Num) |
| |
| template<typename T > |
| T | openfluid::tools::toNumeric (const std::string &Str) |
| |
| bool OPENFLUID_API | openfluid::tools::toBoolean (const std::string &Str) |
| |
| bool OPENFLUID_API | openfluid::tools::startsWith (const std::string &Str, const std::string &SubStr) |
| |
| bool OPENFLUID_API | openfluid::tools::endsWith (const std::string &Str, const std::string &SubStr) |
| |
| bool OPENFLUID_API | openfluid::tools::contains (const std::string &Str, const std::string &SubStr, bool CaseSensitive=true) |
| |
| std::string OPENFLUID_API | openfluid::tools::replace (const std::string &Str, const std::string &SearchStr, const std::string &ReplaceStr) |
| |
| template<class... A> |
| std::string | openfluid::tools::format (const std::string &Fmt, A &&...Args) |
| |
| std::vector< std::string > OPENFLUID_API | openfluid::tools::split (const std::string &Str, const char Sep, bool KeepEmpty=false) |
| |
| std::vector< std::string > OPENFLUID_API | openfluid::tools::split (const std::string &Str, const std::string &SepChars, bool KeepEmpty=false) |
| |
| std::string OPENFLUID_API | openfluid::tools::join (const std::vector< std::string > &Vect, const std::string &Sep) |
| |
| std::vector< std::string > &OPENFLUID_API | operator<< (std::vector< std::string > &Vect, std::string &&Str) |
| |
| std::vector< std::string > &OPENFLUID_API | operator<< (std::vector< std::string > &Vect, const std::string &Str) |
| |
| std::vector< std::string > &OPENFLUID_API | operator<< (std::vector< std::string > &Vect, const std::vector< std::string > &OtherVect) |
| |