Overblog
Suivre ce blog Administration + Créer mon blog

Simple Tokenizer en c++

This simple tokenizer without any dependency allows to parse efficiently strings. For example for(auto it : Tokenizer("a+b+c+","+")) cout << it << endl; produces the following output : a b c Many separators are allowed: for(auto it : Tokenizer("a/b|c\",...

Lire la suite