Anypia Programmer's Documentation
ContentsIndexHome
PreviousUpNext
parseString Function

Parses a string into its delimited parts, using a space separator.

C++
std::vector< std::string > parseString(
    const std::string& str
);
Parameters 
Description 
const std::string& str 
The string to parse. 

A vector of the strings contained in the input.

This version (with only one argument) uses a space as the delimiter.

Copyright (c) 2010. All rights reserved.
What do you think about this topic? Send feedback!