Wolframe, 0.0.3

stringUtils.hpp File Reference

Utility functions for string handling (Mainly to hide intrusive stuff. Implementation is done with help of STL/boost) More...

#include <string>
#include <vector>

Go to the source code of this file.

Namespaces

 _Wolframe
 Toplevel Wolframe namespace.
 
 _Wolframe::utils
 Utility functions for parsing, handling files, allocating memory, etc. (implemented in the core library libwolframe)
 

Functions

void _Wolframe::utils::splitString (std::vector< std::string > &res, const std::string &inp, const char *splitchr)
 Split the string, ingoring empty parts of the result (susequent split characters treated as one) More...
 
void _Wolframe::utils::splitString (std::vector< std::string > &res, std::string::const_iterator begin, std::string::const_iterator end, const char *splitchr)
 Split the string, ingoring empty parts of the result (susequent split characters treated as one) More...
 

Detailed Description

Utility functions for string handling (Mainly to hide intrusive stuff. Implementation is done with help of STL/boost)