这是我到目前为止的C代码。我正在从输入文件中读取名字和姓氏,但麻烦的是打印其他内容。
我必须这样一行:
维纳斯·詹森33770530841 vbjensen@oqtu.edu FRNO 624-771-4676 SIJ SBE WHV TVW
并删除多余的内容使其变为:
vbjensen金星詹森(624)771-4676
我的问题是我得到了正确的输出,但是对于某些行(1)没有FRNO或等效的东西以及(2)没有@符号的行,仍然显示出来。例如,这些行:
Noe Richard 974927158 nirichar@bvu.edu 079-651-3667 HAVQ
Phillip Sandoval 836145561 pusandov#luu.edu OXRU 697-728-1807 LHPN GUX
不应打印这些行,因为第一行没有FRNO等效项,第二行没有@符号。每当我尝试添加格式操作以匹配但不保存时,程序sscanf函数就会开始混乱。
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
int main()
{
// Open the input file and print an error message if we're unsuccessful.
// (the error message is mostly to help you with debugging. We won't test
// this behavior).
FILE *fp = fopen("input.txt", "r");
char line[500];
if(!fp) {
printf("Can't open input file\n");
exit(1);
}
// Counting input lines, so we can report errors.
// Keep reading input lines until we reach the end-of-file.
// Write an output line or an error message for each one.
do {
int lineCount = 1;
char fName[12];
char lName[12];
//char skipNum[12];
char email[9];
//char firstNum[4];
//char secondNum[4];
//char thirdNum[5];
//printf("%c", ch);
char phone[] = "(123)123-1234";
//fscanf(fp, "%s", fName);
//fscanf(fp, "%s", lName);
//fscanf(fp, "%[1-9]", skipNum);
//fscanf(fp, "%[a-z]", email);
sscanf (line, "%11s%11s%*[ 0-9]%9[^@]%*[^0-9]%3c-%3c-%4c", lName, fName, email, &phone[1], &phone[5], &phone[9]);
//printf("Invalid line");
//printf("\n");
// exit(1);
printf("%s", line);
printf("\n");
printf("%s", email);
printf("%s", fName);
printf("%s", lName);
//printf("%s", skipNum);
//printf("%s", firstNum);
printf("%s", phone);
printf("\n");
lineCount++;
}
while (fgets(line, sizeof line, fp));
return EXIT_SUCCESS;
}
答案 0 :(得分:1)
采用格式字符串"%20s%20s%*[ 0-9]%20[^@]@%*s%20s %3c-%3c-%4c"
%20s
将最多扫描20个非空白字符。忽略前导空格并停在尾随空格。
%*[ 0-9]
将扫描空格和数字。星号*告诉sscanf放弃扫描的字符。
%20[^@]@
将最多扫描20个字符,或者将在@
处停止扫描。然后它将尝试扫描@
。如果@
丢失,扫描将提前终止。
%*s
将扫描非空白并丢弃字符。
%20s
将最多扫描20个非空白字符。
%3c
将忽略任何前导空格并扫描三个字符。
-%3c
将先扫描-
,然后再扫描三个字符。如果-
丢失,扫描将提前终止。
-%4c
将先扫描-
,然后再扫描四个字符。如果-
丢失,扫描将提前终止。
如果sscanf
不扫描七个项目,则不会打印任何内容。
#include <stdio.h>
#include <stdlib.h>
int main ( void) {
char line[500] = "";
int lineCount = 0;
FILE *fp = NULL;
if ( NULL == ( fp = fopen("input.txt", "r"))) {
fprintf( stderr, "Can't open input file\n");
exit(1);
}
while ( fgets ( line, sizeof line, fp)) {//read each line from the file
char fName[21];
char lName[21];
char match[21];
char email[21];
char phone[] = "(123)567-9012";
lineCount++;
if ( 7 == sscanf ( line, "%20s%20s%*[ 0-9]%20[^@]@%*s%20s %3c-%3c-%4c"
, lName, fName, email, match, &phone[1], &phone[5], &phone[9])) {
printf ( "line [%d] %s %s %s %s\n", lineCount, email, fName, lName, phone);
}
}
fclose ( fp);
return 0;
}