我刚刚打开了一个文本文件,其中包含几行不同长度的行,有些行以“。”开头。 (点)所以那些被定义为函数,我稍后会处理它们。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char line[10000];
char filename[30];
FILE *fp;
int i;
int u;
printf("Enter file name with extension\n");
gets(filename);
fp = fopen(filename,"r");
if( fp == NULL )
{
perror("Error while opening the file.\n");
exit(EXIT_FAILURE);
}
我努力了2天在同一行打印其余的行(不是函数)但是当我使用strtok
函数时,你可以看到,它删除它而不添加空格,所以来自不同行的人物混合在一起。
第二个问题是我试图将行长度限制为最多60个字符,如果长度相等或更小,则将单词放入空格中。
while(fgets(line,10000,fp) != NULL )
{
if(line[0]!='.'){
strtok(line,"\n");
for(u=0;u<strlen(line);u++){
if(u==60){
printf("\n");
}
else{printf("%c",line[u]);}
}
printf("%s",line);
}
else{printf("");}
}
fclose(fp);
return 0;
}
答案 0 :(得分:1)
您需要一个类似于以下的算法:
strtok()
或strcspn()
或strpbrk()
)这让你忽略了功能线。或者,您可以刷新当前输出行(如果它不为空),打印功能行,然后转到下一行。
请注意,如果下一个单词是60个字符或更长,则不会截断它或将其拆分;它只会占据一条线。你有责任注意没有缓冲区溢出。例如,您可以刷新上一个输出行,打印该单词及其换行符,然后将输出重置为空。或者你可能会拆分这个单词(但是你会将其中的一些分开以适应当前行,其余部分放在下一行,或者只是强制开始到下一行然后拆分?)。如果单词长度为250个字符怎么办?
这是上述算法的相当直接的音译。它从标准输入读取;我拒绝回答有关打开哪个文件名的提示。如果我想处理任意文件,它们将作为参数在命令行上传递。
#include <stdio.h>
#include <string.h>
/*
.function line should not appear in output
*/
/*
WordOfMoreThanSixtyCharacters--WithNaryASpaceInSight--ThoughThereIsPunctuation!
*/
enum { OUT_LENGTH = 60 };
int main(void)
{
char oline[OUT_LENGTH]; // output line
char iline[4096]; // input line
int olength = 0; // length of data in output line
const char separators[] = " \n\t";
while (fgets(iline, sizeof(iline), stdin) != 0)
{
if (iline[0] == '.')
continue;
int wlength; // word length
char *wline = iline; // start of word
wline += strspn(wline, separators);
while ((wlength = strcspn(wline, separators)) > 0)
{
if (olength + 1 + wlength > OUT_LENGTH)
{
printf("%.*s\n", olength, oline);
olength = 0;
if (wlength >= OUT_LENGTH)
{
printf("%.*s\n", wlength, wline);
wline += wlength;
wlength = 0;
}
}
if (wlength > 0)
{
if (olength > 0)
oline[olength++] = ' ';
strncpy(&oline[olength], wline, wlength);
olength += wlength;
wline += wlength;
}
wline += strspn(wline, separators);
}
}
if (olength > 0)
printf("%.*s\n", olength, oline);
return 0;
}
在自己的源代码上运行时的输出:
#include <stdio.h> #include <string.h> /* */ /*
WordOfMoreThanSixtyCharacters--WithNaryASpaceInSight--ThoughThereIsPunctuation!
*/ enum { OUT_LENGTH = 60 }; int main(void) { char
oline[OUT_LENGTH]; // output line char iline[4096]; // input
line int olength = 0; // length of data in output line const
char separators[] = " \n\t"; while (fgets(iline,
sizeof(iline), stdin) != 0) { if (iline[0] == '.') continue;
int wlength; // word length char *wline = iline; // start of
word wline += strspn(wline, separators); while ((wlength =
strcspn(wline, separators)) > 0) { if (olength + 1 + wlength
> OUT_LENGTH) { printf("%.*s\n", olength, oline); olength =
0; if (wlength >= OUT_LENGTH) { printf("%.*s\n", wlength,
wline); wline += wlength; wlength = 0; } } if (wlength > 0)
{ if (olength > 0) oline[olength++] = ' ';
strncpy(&oline[olength], wline, wlength); olength +=
wlength; wline += wlength; } wline += strspn(wline,
separators); } } if (olength > 0) printf("%.*s\n", olength,
oline); return 0; }