#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef char T[64];
void mySplit( char *sStr, char *delims, T t[])
{
int i = 0;
char *result = NULL;
result = strtok( sStr, delims );
while( result != NULL ) {
strcpy(t[i++], result);
printf( "result is [%s] \n", result );
result = str
C语言简单实现字符串截取
最新推荐文章于 2024-10-07 21:48:01 发布
本文介绍了如何在C语言中实现字符串的截取操作,通过示例代码详细讲解了使用指针和数组来截取字符串的方法,帮助读者理解C语言字符串处理的基本原理。
摘要由CSDN通过智能技术生成