好的,所以我需要输入这样的字符串IP_1/MASK IP_2 NUM [NET_1 NET_2 NET3 ... NET_NUM]
例如 :192.168.25.87/24 192.168.26.1 3 192.168.0.0/16 192.0.26.0/16 192.168.26.0/24
然后将该字符串拆分为多个变量(IP_1
,MASK
等)。
我在互联网上遵循了如何拆分的指南,我这样做是这样的:
int main()
{
char* IP_1[256],IP_2[256],NET[256][256],character[256];
int MASCA,NUM,i=1,j;
char *p;
gets(character);
p=strtok(character,"/ ");
while(p!=NULL)
{
printf("%s\n",p);
p=strtok(NULL,"/ ");
}
因此,这样做可以将数组拆分为多个元素,但是如何将这些元素保存到
IP_1
,MASK IP_2
,NUM NET_1
等...中呢? 最佳答案
有很多方法。
例如,执行以下操作。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void){
char IP_1[256], IP_2[256], NET[256][256], line[256], rest[256];
int MASK, NUM, i;
char *p;
fgets(line, sizeof line, stdin);//gets has already been abolished.
//Since the first three elements are fixed, use sscanf
if(3 > sscanf(line, "%s %s %d %255[^\n]%*c", IP_1, IP_2, &NUM, rest)){
printf("invalid input\n");
return -1;
}
if(NULL==(p = strchr(IP_1, '/'))){
printf("invalid input\n");
return -1;
}
*p = 0;// Replace '/' with '\0'
MASK = atoi(p + 1);// convert next '/' to int
for(p=strtok(rest, " \n"), i = 0; i < NUM && p; ++i, p=strtok(NULL, " \n")){
strcpy(NET[i], p);//strtok and copy
}
//test print
printf("IP_1:%s\n", IP_1);
printf("MASK:%d\n", MASK);
printf("IP_2:%s\n", IP_2);
for(i = 0; i < NUM; ++i)
printf("NET_%d:%s\n", i + 1, NET[i]);
}
关于c - 如何将一个char保存到多个变量中? C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40710413/