功能:
在字符串中找出连续最长的数字串,并把这个串的长度返回,
并把这个最长数字串付给其中一个函数参数outputstr 所指内存。
例如:”abcd12345ed125ss123456789″的首地址传给intputstr 后,函数将返回9,
outputstr 所指的值为123456789。
这个题目类似与 编写 char* strcpy(char* strdes,const char* strsrc);
主要考虑题目的要求以及一些安全的检验。
#include <assert.h>
#include <stdio.h>
int continuemax(char* output,char *input)
{
char *temp = input;
char *maxstr = NULL;
int maxnum = 0;
assert( (output != NULL) && (input != NULL) );
while ( *input != '\0' )
{
while ( *input > '9' || *input < '0' )
input ++;
temp = input;
while ( *input >= '0' && *input <= '9' )
input ++;
if (input - temp > maxnum)
{
maxstr = temp;
maxnum = input - temp;
}
}
while ( *maxstr >= '0' && *maxstr <= '9' )
(*output ++) = (*maxstr ++);
*output = '\0';
return maxnum;
}
void main()
{
char *input = "1244121hdkahdh327348y1284y8ahd";
char output[20];
printf("%d\n",continuemax(output,input));
printf("%s\n",output);
return 0;
}