
3 Aug
2004
3 Aug
'04
5:48 p.m.
On Tue, 3 Aug 2004 19:04:08 +0200, Pavol Droba wrote
On Tue, Aug 03, 2004 at 09:21:57AM -0700, Jeff Garland wrote: Thanks for pointing that out. Explicit template parameter is an old reminiscent. It should no be there. So the correct syntax would be:
typedef vector< string > split_vector_type;
split_vector_type SplitVec; // #2: Search for tokens split( SplitVec, str1, is_any_of("-*") ); // SplitVec == { "hello abc","ABC","aBc goodbye" }
Yes, thanks, I figured it out shortly after sending the email. It's much better without the typing cluttering things up :-) Jeff