- 论坛徽章:
- 0
|
删除 vXX 样式字串程序
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// success return 1. not find return 0, modify the parameter string val
int delete_vxx(char *pDelete){
char *pTrv = pDelete + strlen(pDelete) - 1; // string tail
int nDotNum = 0;
while(pTrv >= pDelete){
if(*pTrv-- == '.' && ++nDotNum >= 2)
break;
}
if(nDotNum < 2) // dot number is less than 2
return 0;
// pTrv point to a dot
char *pDotPosition = pTrv;
++pTrv;
int nFindFlag = 0;
while(*pTrv != '.'){
if((*pTrv == 'v' || *pTrv == "V") && isdigit(*(pTrv + 1))){
++pTrv;
while(isdigit(*pTrv))
++pTrv;
nFindFlag = 1;
break;
}
}
// pTrv points to a charactor which should be move forward
if(nFindFlag == 1){
// find vxx sub string
while(*pTrv)
*pDotPosition++ = *pTrv++;
pDotPosition = '\0'; // new string tail
return 1;
}
return 0;
}
int main(void)
{
char arr[] = "e:\\so\\ok.v448uu.gif";
fprintf(stdout, "original string: %s\n", arr);
if(delete_vxx(arr))
fprintf(stdout, "after delete string: %s\n", arr);
else
fprintf(stdout, "No such kind of sub string.\n");
return 0;
} |
|