|
tlx
|
#include <sstream>#include <string>Go to the source code of this file.
Namespaces | |
| namespace | tlx |
Functions | |
Split and Join | |
| template<typename Glue, typename Iterator> | |
| static std::string | join (Glue glue, Iterator first, Iterator last) |
| Join a sequence of strings by some glue string between each pair from the sequence. | |
| template<typename Container> | |
| static std::string | join (char glue, const Container &parts) |
| Join a Container of strings by some glue character between each pair from the sequence. | |
| template<typename Container> | |
| static std::string | join (const char *glue, const Container &parts) |
| Join a Container of strings by some glue string between each pair from the sequence. | |
| template<typename Container> | |
| static std::string | join (const std::string &glue, const Container &parts) |
| Join a Container of strings by some glue string between each pair from the sequence. | |