如何将char保存为多个变量? C

时间:2016-11-20 22:56:17

标签: c arrays variables strtok

好的,我需要输入一个像这样的字符串

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

然后将此字符串拆分为多个变量(MASKint 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_2NUM NET_1,{{1}}等......?

1 个答案:

答案 0 :(得分: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]);
}