學習筆記24- C/C++ 字符串分割函數

字符串分割 由於C++沒有相似Python,Java那樣的split函數,因此須要本身實現字符串分割。ios 方法1 能夠先將string類型轉換成char數組,而後使用C語言的strtok函數,進行字符串分割:web #include<stdio.h> #include<string.h> int main() { char s[]="a,b,c,d"; const char *
相關文章
相關標籤/搜索