0

大家好,我有这个文件结构:

0
2 4
0: 1(ab) 5(b)
1: 2(b) 6(a)
2: 0(a) 2(b)
3: 2(a) 6(b)
4: 5(ab)
5: 2(a) 6(b)
6: 4(b) 6(ab)

每行都将提供一个结构及其数据(数字+字母)。
阅读该行并获得我想要的字符串的最佳方法是什么?

例子:

0
2 4
0,1,ab,5,b
1,2,b,5,a
...

这些线的大小可能会有所不同,因为我们可以有 1、2、3、.... 数字。

我已经做到了:

//struct 
#define MAX_ 20

struct otherstats{ //struct otherStats
  int conectstat[MAX_];//conection with others stats
  int transitions[MAX_];//Symbols betwen conection ASCI
}tableStats[MAX_];

struct sAutomate{
 int stat_initial; //initial
 int stats_finals[MAX_]; //final orfinals
 struct otherstats tableStats[MAX_]; //otherStats 0 1 2 3 4 5 6
};

/* eXample that what i want ..using the example 
sAutomate.stat_initial=0
sAutomate.stats_finals[0]=2
sAutomate.stats_finals[1]=4

Others Stats table
//0
sAutomate.tableStats[0].conectstat[0]=1;
sAutomate.tableStats[0].conectstat[1]=5;
sAutomate.tableStats[0].transitions[0]=ab;
sAutomate.tableStats[0].transitions[1]=b; 
//1
sAutomate.tableStats[1].conectstat[0]=2;
sAutomate.tableStats[1].conectstat[1]=6;
sAutomate.tableStats[1].transitions[0]=b;
sAutomate.tableStats[1].transitions[1]=a;
///etc
 */



void scanfile(){ //function to read the file

struct sAutomate st; //initialize st struct

char filename[] = "txe.txt";
FILE *file = fopen ( filename, "r" );
char buf[81];       
char parts[5][11];  

fscanf(file,"%d", &st.stat_initial);//read first line
printf("initial state : %d \n", st.stat_initial);
fscanf(file,"%d",&st.stats_finals);
fscanf(file,"%d",&st.stats_finals);


while (fgets(buf, sizeof(buf), stdin) != NULL)
{
if (sscanf(buf, "%10[^:]: (%10[^(], %10[^)]), (%10[^(], %10[^)])",
           parts[0], parts[1], parts[2], parts[3], parts[4]) == 5)
{
  printf("parts: %s, %s, %s, %s, %s\n",
         parts[0], parts[1], parts[2], parts[3], parts[4]);
}
else
{
  printf("Invalid input: %s", buf);
}
}
//fclose
4

2 回答 2

1

我看到的第一个问题是你正在覆盖stats_finals

fscanf(file,"%d",&st.stats_finals);
fscanf(file,"%d",&st.stats_finals);

你想在这里做的是:

fscanf(file,"%d",&st.stats_finals[0]);
fscanf(file,"%d",&st.stats_finals[1]);

从文本文件中保存“2”和“4”。

第二个主要问题是您正在阅读stdin

while (fgets(buf, sizeof(buf), stdin) != NULL)

那不会读取您的文本文件,而是从键盘读取输入...所以您希望它是:

while (fgets(buf, sizeof(buf), file) != NULL)

第三个(次要)问题是fscanf()不会读取换行符,并且fgets()会。这意味着当您stats_finals在 while 循环中从第二次读取到第一次读取时,您的第一个输入将只是剩下的换行符。这没什么大不了的,因为您检查“无效输入”,但值得注意。

最后,您的 sscanf 在我看来是错误的:

sscanf(buf, "%10[^:]: (%10[^(], %10[^)]), (%10[^(], %10[^)])",
               ^                        ^
              That's a width of 10,     Why are you checking for commas? You didn't
              I don't think that's      have any in your text file
              what you wanted...

我认为这更符合您的要求:

sscanf(buf, "%[0-9]: %[0-9](%[^)]) %[0-9](%[^)])",
                ^
             takes a digit (0 to 9)

编辑 错过了你原来的观点。如果您不知道要阅读的字符串有多长,则不能使用sscanf(). 就是这么简单。:)

scanf 系列假设您知道要解析的对象数量以及格式字符串接受的数量。然而,还有其他选择。

在你做的时候用 fgets 读一行,然后你可以标记它。可以使用 C 函数strtok,也可以自己使用 for 循环。

然而,请注意:

由于您不知道它有多长,因此:这char parts[5][11];不是您最好的选择。这将您限制为 2 个条目......可能最好动态地执行此操作(读取该行然后分配正确的大小以存储您的令牌。)

于 2012-12-20T14:31:08.657 回答
0

如果您真的不知道该行将包含多少个数字和字母,为什么要读取固定数量的数字和字母?

您可以阅读整行,fgets然后使用类似strtok这样的标记器对其进行解析,如下所示:

const char* const DELIMITERS = " ";

int i;  // index for tableStats
char* token;

token = strtok(line, DELIMITERS);

// first integer
if (token == NULL || sscanf(token, "%d:", &i) < 1)
  // error

/* it seems like you should have at least one element in your "list",
 * otherwise this is not necessary
 */

token = strtok(NULL, DELIMITERS);

if (token == NULL || sscanf(token, "%d(%[^)])",
    &(tableStats[i].connectstat[0]),
    &(tableStats[i].transitions[0])) < 2)
  // error

// read optional part
for (int j = 1; (token = strtok(NULL, DELIMITERS)) != NULL; ++j)      
  if (sscanf(token, "%d(%[^)])", &(tableStats[i].connectstat[j]),
      &(tableStats[i].transitions[j])) < 3)
    break;

请记住,strtok更改字符串,如果您仍然需要它,请复制它。

显然代码是针对任意长行的,阅读前两行是微不足道的。

于 2012-12-20T14:52:35.087 回答