|
template<typename ContainerT = std::vector<std::string>> |
ContainerT | split (const typename ContainerT::value_type &s, std::basic_regex< typename ContainerT::value_type::value_type > regex) |
| Utility to split a string by a separator , into a vector of strings.
|
|
template<typename ContainerT = std::vector<std::string>> |
ContainerT | split (const typename ContainerT::value_type &s, typename ContainerT::value_type separator) |
| Utility to split a string by a separator , into a vector of strings.
|
|
template<typename ContainerT = std::vector<std::string>> |
ContainerT | split (const typename ContainerT::value_type &s, typename ContainerT::value_type::value_type separator) |
| Utility to split a string by a separator , into a vector of strings.
|
|
template<typename ContainerT = std::vector<std::string>> |
ContainerT::value_type | join (typename ContainerT::const_iterator begin, typename ContainerT::const_iterator end, const typename ContainerT::value_type &separator=", ") |
| Utility to join the elements in a container to a single string separated by a separator .
|
|
template<typename ContainerT = std::vector<std::string>> |
ContainerT::value_type | join (typename ContainerT::const_iterator begin, typename ContainerT::const_iterator end, const typename ContainerT::value_type::value_type &separator) |
| Utility to join the elements in a container to a single string separated by a separator .
|
|