#include <iostream> #include <string> #include <vector> #include <boost/algorithm/string/classification.hpp> #include <boost/algorithm/string/split.hpp> using namespace std; int main() { string s = "sss/ddd,ggg"; vector<string> vStr; boost::split( vStr, s, boost::is_any_of( ",/" ), boost::token_compress_on ); for( vector<string>::iterator it = vStr.begin(); it != vStr.end(); ++ it ) cout << *it << endl; return 0; }
目前分類:C++ (7)
- Jun 10 Tue 2014 03:52
c++ 分離字串
- Dec 24 Tue 2013 10:30
取用globle variable
1 #include<iostream>
2 using namespace std;
- Dec 24 Tue 2013 00:13
static variable
1 #include<iostream>
2 using namespace std;
- Jun 10 Mon 2013 02:18
Format set
#iomanip
cout<<setiosflags(ios::fixed|ios::showpoint|ios::right|ios::left)<<setprecision(2);