程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 編程c語言-字符串的分割以及分割後的字符串保存到字符串數組

編程c語言-字符串的分割以及分割後的字符串保存到字符串數組

編輯:編程綜合問答
字符串的分割以及分割後的字符串保存到字符串數組

怎麼能分割字符串並將他們分別保存到字符串數組裡,c語言思路或者源代碼

最佳回答:


 #include <stdio.h>
 #include <string.h>
 void split(char **arr, char *str, const char *del) {
 char *s = strtok(str, del);
 while(s != NULL) {
     *arr++ = s;
     s = strtok(NULL, del);
 }
}
int main() {
 char str[] = "10,20,30";
 char *arr[3];
 const char *del = ",";
 int i = 0;
 split(arr, str, del);
 while(i<3)
     printf("%s\n", *(arr+i++));
 }

http://codepad.org/J8qVPHiD

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved