String Split

static vector<string> split(string str, string delim) { std::vector<std::string> strings; std::string::size_type pos = 0; std::string::size_type prev = 0; while ((pos = str.find(delim, prev)) != std::string::npos) { strings.push_back(str.substr(prev, pos - prev)); prev = pos + 1; } strings.push_back(str.substr(prev)); return strings; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.