From 707b24dd07236243269cf092728f85172e94e8a4 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 8 Aug 2021 22:02:52 -0400 Subject: initial commit --- source/serial/tests/proof_of_concepts/tokenizer.cc | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 source/serial/tests/proof_of_concepts/tokenizer.cc (limited to 'source/serial/tests/proof_of_concepts/tokenizer.cc') diff --git a/source/serial/tests/proof_of_concepts/tokenizer.cc b/source/serial/tests/proof_of_concepts/tokenizer.cc new file mode 100644 index 0000000..da15a09 --- /dev/null +++ b/source/serial/tests/proof_of_concepts/tokenizer.cc @@ -0,0 +1,31 @@ +#include +#include +#include + +#include +#include +#include +#include + +void +_delimeter_tokenizer (std::string &data, std::vector &tokens, + std::string delimeter) +{ + boost::split(tokens, data, boost::is_any_of(delimeter)); +} + +typedef boost::function&)> TokenizerType; + +int main(void) { + std::string data = "a\rb\rc\r"; + std::vector tokens; + std::string delimeter = "\r"; + + TokenizerType f = boost::bind(_delimeter_tokenizer, _1, _2, delimeter); + f(data, tokens); + + BOOST_FOREACH(std::string token, tokens) + std::cout << token << std::endl; + + return 0; +} \ No newline at end of file -- cgit v1.2.3