C++ String Toolkit (StrTk) Tokenizer - CodeProject
std::string data = " 0xFA37ED12|Rumpelstiltskin|397|1.31|58.7"; person p; strtk::hex_to_number_sink< unsigned int > hex_sink(p.id); // register id with the hex sink strtk::parse(data, " |",hex_sink,p.name,p.age,p.height,p.weight); Batch processing of a te...