我想复制这些数据@ 822!172.28.6.137!172.28.6.110!5000!6000 |将文件input_data格式化为此结构,将文件中的822复制到input.key,然后将172.28.6.137复制到src_ip!遇到它应该将数据从文件复制到结构的下一个成员怎么做?
struct input_par
{
char key[5];
char src_ip[15];
char dst_ip[15];
char src_port[5];
char dst_port[5];
};
main()
{
int i;
char ch;
FILE *fp;
struct input_par input;
fp = fopen("input_data","r");
if(fp == NULL)
printf("file open failed \n");
else
{
ch = fgetc(fp);
if(ch=='@')
printf("data is valid\n");
fseek(fp,1,1);
while(ch!='|')
{
input.key =
input.src_ip =
input.dst_ip =
input.src_port =
input.dst_port =
}
}
答案 0 :(得分:1)
您可以使用fscanf。我会做类似的事情:
struct input_par {
char key[5];
char src_ip[15], dst_ip[15];
int src_port;
int dst_port;
}
struct input_par ip;
if ( fscanf(fp, "@%s!%s!%s!%d!%d",
ip.key, ip.src_ip, ip.dst_ip, ip.src_port, ip.dst_port) != 5 )
do_error();
答案 1 :(得分:1)
您可以使用正则表达式,参见libstd
中的regexp.h如果你只是必须在这里使用这种东西,你可以通过你的char []来计算!并且取决于你以前见过多少你在正确的部分添加你已经读过的字符。
(fscanf也更容易)
答案 2 :(得分:0)
首先,让我们有一个读取一个字段的函数(尽管它不会检测部分读取的字段)
int read_field(FILE *f,char *destination,size_t max_len)
{
int c;
size_t count = 0;
while(c = fgetc(f)) != EOF) {
if(c == '!' || c == '|')
break;
if(count < max_len - 1)
destination[count++] = c;
}
destination[count] = 0;
return count;
}
然后阅读字段:
int ch = fgetc(fp);
if(ch=='@') {
int ok;
printf("data is valid\n");
ok = get_field(fp,input.key,sizeof input.key);
ok && get_field(fp,input.src_ip,sizeof input.src_ip);
ok && get_field(fp,input.dst_ip,sizeof input.dst_ip);
ok && get_field(fp,input.src_port,sizeof input.src_port);
ok && get_field(fp,input.dst_port,sizeof input.dst_port);
if(!ok) {
puts("parse error");
}
}
答案 3 :(得分:0)
对fscanf的调用将完成这项工作:
fscanf(fp, "@%[0-9]!%[0-9.]!%[0-9.]!%[0-9]!%[0-9]|", input.key, input.src_ip, input.dst_ip, input.src_port, input.dst_port);
请注意,首先必须确保输入字符串不会溢出数组字段。