華電北風吹
天津大學認知計算與應用重點實驗室
日期:2015/9/21
一、字元,整形(浮點型)相互轉化
使用stringstream實現string與int,double等型別相互轉換
#include
#include
#include
using
namespace
std;
int main(int argc, char* ar**)
二、字串split方法
#include
#include
#include
using
namespace
std;
void split(string &s, string &delim, vector
* ret);
int main()
void split(string &s, string &delim, vector
* ret)
if (index - last>0)
}
三、字串trim()函式
#include
#include
using
namespace
std;
string& trim(string &s,string &m);
int main()
string& trim(string &s,string &m)
s.erase(0, s.find_first_not_of(m));
s.erase(s.find_last_not_of(m) + 1);
return s;
}
四、統計字元個數
#include
using
namespace
std;
int main(int argc, char* ar**)
自定義C string類
ifndef string h define string h include include include include using namespace std class string string const char st c風格字串初始化的建構函式 string size type s...
自定義函式 Excel之自定義函式
在excel中,當系統函式不能滿足我們的需求時候,我們可以使用vba自定義函式,如抓取網頁資料,翻譯詞彙,手機號歸屬地查詢等。下面將介紹2個自定義函式,idymd函式 身份證年月日性別 通過身份證號,返回性別,出生年月日。語法 idymd id 引數 id,身份證號,預設身份證長度18位。vba 如...
自定義函式
使用者自定義函式是sqlserver的資料庫物件,他不能應用於一系列改變資料庫狀態的操作。但它可以像系統函式那樣在查詢中或儲存過程中等中的程式段中使用。也可以像儲存過程一樣通過execute命令來執行,使用者自定義函式中儲存了transact sql可以返回一定的值。在sqlserver中根據函式返...