标签:atoi char span class 字符 idt 文件 round 位置
1 #include <stdio.h>
2 #include <string.h>
3 int main()
4 {
5 char arr[] = "123456789@qq.com";
6 char * p = strtok(arr, "@");
7 //delim中每一个字符都是分隔符
8 while (NULL != p) {
9 printf("%s\t",p);
10 p = strtok(NULL, ".");
11 }
12
13 system("pause");
14 }
字符串转数字的 函数
标签:atoi char span class 字符 idt 文件 round 位置
原文地址:https://www.cnblogs.com/guoyujiang/p/12299880.html