- 论坛徽章:
- 0
|
回楼上几位,我也觉得罗嗦的很,现在代码找到错误了,各位看看能不能优化一下?用比较精简的代码实现?
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- char *str = "sln:\\168.0.0.1:80sln";
- char *iptmp;
- char *ip;
- char *porttmp;
- char *port;
- int iport = 0;
- iptmp = (char*)malloc(32);
- memset(iptmp,0,32);
- porttmp = (char*)malloc(10);
- memset(iptmp,0,10);
- if(iptmp == NULL || porttmp == NULL)
- {
- printf("Error!malloc!\n");
- getch();
- return -1;
- }
- ip = iptmp;
- port = porttmp;
- while(*str<=48 || *str>= 57)
- {
- str ++;
- }
- while(*str == '.' || (*str<=57 && *str>=48))
- {
- *iptmp++ = *str++;
- }
- printf("IP is [%s]\n",ip);
- while(*str<=48 || *str>= 57)
- {
- str ++;
- }
- while(*str>=48 && *str<= 57)
- {
- *porttmp++ = *str++;
- }
- printf("Port is [%s]\n",port);
- iport = atoi(port);
- printf("iport is [%d]\n",iport);
- free(iptmp);
- free(porttmp);
- getch();
-
- return 0;
- }
复制代码 |
|