用strtok函数把 8 C1 C2 L1 L2 P1 P2 S1 S2 # / TYPES OF 的字母数字组合储存到字符串中
时间: 2024-02-10 17:37:31 浏览: 67
使用strtok函数截取字符串得到相应的子串存入数组中
4星 · 用户满意度95%
切割成单独的字符串。
可以使用以下代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "8 C1 C2 L1 L2 P1 P2 S1 S2";
char* token = strtok(str, " "); // 使用空格作为分隔符
while (token != NULL) {
printf("%s\n", token); // 输出每个单独的字符串
token = strtok(NULL, " ");
}
return 0;
}
```
输出结果为:
```
8
C1
C2
L1
L2
P1
P2
S1
S2
```
阅读全文