000
05.05.2007, 20:45 Uhr
Pler
Einer von Vielen (Operator)
|
Hallo!
Ich fand gerade das hier hier:
C++: |
void Split(const std::string& str, const std::string& delim, std::vector<std::string>& output) { unsigned int offset = 0; unsigned int delimIndex = 0; delimIndex = str.find(delim, offset);
while (delimIndex != std::string::npos) { output.push_back(str.substr(offset, delimIndex - offset)); offset += delimIndex - offset + delim.length(); delimIndex = str.find(delim, offset); }
output.push_back(str.substr(offset)); }
|
Dieser Post wurde am 05.05.2007 um 20:51 Uhr von Pler editiert. |