| c++ Programming Glossary: delimsBreaking a single string into multiple strings C++? http://stackoverflow.com/questions/5088358/breaking-a-single-string-into-multiple-strings-c  this void SplitName const string fullName const string delims vector string names size_t i 0 size_t j 0 while i fullName.size.. j 0 while i fullName.size  i fullName.find_first_not_of delims i j fullName.find_first_of delims i if i fullName.size  names.push_back.. delims i j fullName.find_first_of delims i if i fullName.size  names.push_back fullName.substr i j i.. 
 Fast string splitting with multiple delimiters http://stackoverflow.com/questions/5505965/fast-string-splitting-with-multiple-delimiters  string const s char const d C ret C output bitset 255 delims while d unsigned char code d delims code true typedef string.. C output bitset 255 delims while d unsigned char code d delims code true typedef string const_iterator iter iter beg bool in_token.. string const_iterator it s.begin end s.end it end it if delims it  if in_token  output.push_back typename C value_type beg.. 
 How to make my split work only on one real line and be capable to skeep quoted parts of string? http://stackoverflow.com/questions/7436481/how-to-make-my-split-work-only-on-one-real-line-and-be-capable-to-skeep-quoted-p  vector string split const string s const vector string delims const vector string terms const bool keep_empty true vector.. terms const bool keep_empty true vector string result if delims.empty result.push_back s return result bool checkForDelim true.. testTerm terms.end vector string const_iterator testDelim delims.end if checkForDelim  testTerm matchSymbol s i terms testDelim.. 
 Pretty-print C++ STL containers http://stackoverflow.com/questions/4850473/pretty-print-c-stl-containers  std char_traits TChar and TChar char or wchar_t and MyDelims needs to be defined for TChar. Usage cout pretty_print custom_delims.. defined for TChar. Usage cout pretty_print custom_delims MyDelims x . struct custom_delims_base  virtual ~custom_delims_base virtual.. stream std wostream 0 template typename T typename Delims struct custom_delims_wrapper public custom_delims_base  custom_delims_wrapper.. 
 |