為什麼這篇c字串切割鄉民發文收入到精華區:因為在c字串切割這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者bestwishes (覓知音 尋知己...)看板C_and_CPP標題Re: [問題] 切割字...
※ 引述《edmund71405 (餅乾小舖)》之銘言:
: 開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
: dev-c++
: 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
: 問題(Question):
: 在PHP中有expload可以切開字串存回陣列
: 在C/C++中是否有類似的功能或做法
忘記在哪看到的
void split(char **arr, char *str, const char *del)
{
char *s = strtok(str, del);
while(s != NULL) {
*arr++ = s;
s = strtok(NULL, del);
}
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.115.50.61