You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
481 B
C++
21 lines
481 B
C++
3 years ago
|
#ifndef F7CFE6A7_34BF_4E04_94CF_DB8374980631
|
||
|
#define F7CFE6A7_34BF_4E04_94CF_DB8374980631
|
||
|
|
||
3 years ago
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <sstream>
|
||
|
|
||
3 years ago
|
std::vector<std::string> split(const std::string& s, char delimiter)
|
||
|
{
|
||
|
std::vector<std::string> tokens;
|
||
|
std::string token;
|
||
|
std::istringstream tokenStream(s);
|
||
|
while (std::getline(tokenStream, token, delimiter))
|
||
|
{
|
||
|
tokens.push_back(token);
|
||
|
}
|
||
|
return tokens;
|
||
|
}
|
||
|
|
||
|
#endif /* F7CFE6A7_34BF_4E04_94CF_DB8374980631 */
|