sstrtok函数用法

Posted limancx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sstrtok函数用法相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include <cstring>
 3 
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     string s;
 9     getline(cin,s);    // 读取一行
10     char *p;    // 存储分割完一次分出的字符数组
11     char *ss = const_cast<char *>(s.c_str() );
12     p = strtok(ss," ");
13     while(p)
14     {
15         cout << p << "----";
16         p = strtok(NULL," ");
17     }
18     cout << endl << s << endl << ss << endl;
19     return 0;
20 }

 

以上是关于sstrtok函数用法的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 加载源图像固定用法(代码片段,不全)

创建片段而不从 java 代码实例化它

Python中的基本函数及其常用用法简析

js数组高阶方法reduce经典用法代码分享

js数组高阶方法reduce经典用法代码分享

SQL Select 语句的用法