#include <tlx/string/extract_between.hpp>
#include <cstring>
Go to the source code of this file.
|
template<typename Separator1, typename Separator2> |
static std::string | extract_between_template (const std::string &str, const Separator1 &sep1, size_t sep1_size, const Separator2 &sep2) |
std::string | extract_between (const std::string &str, const char *sep1, const char *sep2) |
| Search the string for given start and end separators and extract all characters between the both, if they are found.
|
std::string | extract_between (const std::string &str, const char *sep1, const std::string &sep2) |
| Search the string for given start and end separators and extract all characters between the both, if they are found.
|
std::string | extract_between (const std::string &str, const std::string &sep1, const char *sep2) |
| Search the string for given start and end separators and extract all characters between the both, if they are found.
|
std::string | extract_between (const std::string &str, const std::string &sep1, const std::string &sep2) |
| Search the string for given start and end separators and extract all characters between the both, if they are found.
|