码迷,mamicode.com
首页 > 其他好文 > 详细

从字符串中提取子字符串

时间:2016-03-31 00:21:00      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:从字符串中提取子字符串

#include <assert.h>
int substr(char dst[], char src[], int start, int len)
{
 int srcLen = strlen(src);
 int left = 0;
 assert(dst);
 assert(src);
 if (srcLen < start)
 {
  return -1;
 }
 while (start--)  
 {
  src++;             //指针向后偏移start
 }
 left = srcLen - start;
 if (left < len)
 {
  len = left;
 }
 int ret = len;
 while (len--)
 {
  *dst++ = *src++;
 }
 *dst = ‘\0‘;
 return ret;
}
int main()
{
 char dest[10];
 char *p = "bit-tech";
 substr(dest, p, 4, 4);
 printf("%s\n", dest);
 return 0;
}


从字符串中提取子字符串

标签:从字符串中提取子字符串

原文地址:http://10706198.blog.51cto.com/10696198/1758623

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!