time limit: 1000 ms memory limit: 65536 kib
problem description
blue 獲得了乙個字串,現在他要把這個字串按照某個分隔符來分割成若干個字串,你能幫他實現嗎?
input
輸入資料有多組(資料組數不超過 100),到 eof 結束。
每組資料輸入一行,格式為 「s c」,其中 s 為乙個不含空格且長度不超過 1000 的字串,表示待分割的字串;c 為乙個不是空格的字元,表示分隔符。
輸入資料保證在待分割的字串中,分隔符至少出現一次且不會出現在字串開頭或末尾,並且不會出現連續多個分隔符的情況。
output
對於每組資料,輸出分割後的字串,每個字串佔一行。
sample input
123,de ,
0123.a,/45/6.8 /
sample output
123de0123.a,
456.8
hint
source
【2016級《程式設計基礎(b)i》期末上機考試-第二場】blue
#include
#include
#include
intmain()
printf
("\n");
}return0;
}
執行結果:
123,de ,
123de
0123.a/45/
6.8/
0123.a
456.8
^zprocess returned 0
(0x0
) execution time :
27.149 s
press any key to continue
.
mysql分割字串 mysql分割字串
專案有通過一批id去過濾結果的需求,因為這個id是從其他平台拉下來的excel,為了避免加引號逗號的麻煩,在mysql儲存過程裡面拼接。在此做個記錄。很多地方用得上。1.通過某個字元,分割字串的函式。輸入分別為f string 待分割字串 f delimiter 分割字元 f order 取的字串的...
分割字串
string.split char 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string 陣列。由 net compact framework 支援。string.split char,int32 返回包含此例項中的子字串 由指定 char 陣列的元素分隔 的 string ...
分割字串
最近手裡的活用到分割字串,自己嘗試寫了乙個,在網上找到幾個,留著以後備用。char steps char token char strusbinfo 512 memcpy strusbinfo,1e 2f 3g strlen 1e 2f 3g token strtok strusbinfo,step...