#ifndef __UTIL_STRING_UTILS_H #define __UTIL_STRING_UTILS_H #include #include #include "util/UtilExportable.hpp" UTIL_DLL_VISIBLE bool stringicasecmp( const std::string &s1, const std::string &s2 ); UTIL_DLL_VISIBLE std::vector split( const std::string &s, const std::string &delimiter, bool keepEmpty = true ); UTIL_DLL_VISIBLE bool endswith( const std::string &s, const std::string &endstring ); UTIL_DLL_VISIBLE bool startswith( const std::string &s, const std::string &startstring ); #endif