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

字符串按位置复制,并统计新字符串长度

时间:2015-08-21 17:28:01      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:字符串   程序   统计   

#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>

int substr(char dst[], char src[], int start, int len)
{
	assert(src != NULL && dst != NULL);
	char *pdst = dst;
	int lensrc = 0;
	while (start--)
	{
		src++;
	}
	lensrc = strlen(src);
	if (lensrc < len)
	{
		len = lensrc;
	}
	while (len--)
	{
		*dst++ = *src++;
	}
	*dst = ‘\0‘;
	return strlen(pdst);
}

int main()
{
	char s[] = "abcdefg";
	char str[20];
	int ret = substr(str, s, 4, 5);
	printf("%s\n", str);
	printf("%d\n", ret);
	system("pause");
	return 0;
}


本文出自 “打印九九乘法表” 博客,请务必保留此出处http://10324228.blog.51cto.com/10314228/1686771

字符串按位置复制,并统计新字符串长度

标签:字符串   程序   统计   

原文地址:http://10324228.blog.51cto.com/10314228/1686771

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