Program Listing for File StringUtil.h

Return to documentation for file (components/Util/src/StringUtil.h)

#ifndef UTIL_STRINGUTIL_H
#define UTIL_STRINGUTIL_H

#include <vector>
#include <string>

namespace util {

std::vector<std::string> split(std::string source, char delimiter);

std::string toLower(std::string& value);

std::string trim(const std::string& str);

} // namespace util

#endif // UTIL_STRINGUTIL_H