GOTO 
index
template<typename Inserter>
void
split(const std::string& s, Inserter it, char delimiter = ',')

Defined in header file:  strings.hh

Description

Splits the given string s into substrings which are separated by the given delimiter.

Example


template<typename Inserter, typename Functor>
void
split(const std::string& s, Inserter it, Functor fcn, char delimiter = ',')

Defined in header file:  strings.hh

Description

Splits the given string s into substrings which are separated by the given delimiter. ...

Example


index

Copyright © 2005-2006 Retrieval Solutions. All rights reserved.