目前分類:C++ (7)

瀏覽方式: 標題列表 簡短摘要
#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;
}

Allen 發表在 痞客邦 留言(0) 人氣()

1 #include<iostream>
2 using namespace std;

Allen 發表在 痞客邦 留言(0) 人氣()

1 #include<iostream>
2 using namespace std;

Allen 發表在 痞客邦 留言(0) 人氣()

  • Dec 23 Mon 2013 11:08
  • ++

in c++

++++c        is  "possible"

Allen 發表在 痞客邦 留言(0) 人氣()

  • Jun 10 Mon 2013 02:35
  • switch

switch(variable)

{

Allen 發表在 痞客邦 留言(0) 人氣()

#iomanip

cout<<setiosflags(ios::fixed|ios::showpoint|ios::right|ios::left)<<setprecision(2);

Allen 發表在 痞客邦 留言(0) 人氣()

  • Jun 10 Mon 2013 02:15
  • Random

#ctime

#cstdlib

Allen 發表在 痞客邦 留言(0) 人氣()