程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-C++可以用指針數組從字符串中提取子字符串麼?

c++-C++可以用指針數組從字符串中提取子字符串麼?

編輯:編程綜合問答
C++可以用指針數組從字符串中提取子字符串麼?

C++可以用指針數組從字符串中提取子字符串麼?
如果可以請給一個示范QAQ

最佳回答:


http://www.cnblogs.com/xiangzi888/archive/2012/04/16/2451947.html

/* strtok example */
#include <stdio.h>
#include <string.h>

int main (void)
{
    char str[] = "- This, a sample string.";
    char *pch;
    printf("Splitting string \"%s\" into tokens:\n", str);
    pch = strtok(str," ,.-");
    while (pch != NULL)
    {
        printf("%s\n", pch);
        pch = strtok(NULL, " ,.-");
    }
    printf("at the end: %s", str);
    return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved