看板 C_and_CPP 關於我們 聯絡資訊
總覺得很多人想要在c++裡面用類似strtok功能的function,所以就心血來潮寫了一個 STL版的strtok http://nopaste.csie.org/eea98 範例用法: #include <iostream> #include "strtok.hpp" using namespace std; int main() { string a = ",-1- ,2"; string b = ", -"; for (strtok_iterator i(a, b), end; i != end; ++i) { cout << *i << endl; } } // output: // 1 // 2 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.123.225.77 ※ 編輯: ibmibmibm 來自: 140.123.225.77 (06/06 02:01)
tinlans:辛苦你了...但.. 06/06 02:16
tinlans:Boost.Tokenizer 就是一個類似的現成品了。 06/06 02:17
tinlans:http://tinyurl.com/29dgrab 06/06 02:17
nowar100:推!推您的熱情 06/06 10:44