Created
April 1, 2019 21:09
-
-
Save davidcairuz/7fbcb31942dd619cc8dc48d439df2c2a to your computer and use it in GitHub Desktop.
socorro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
void clear_result() { | |
FILE *fp = fopen("result.txt", "w"); | |
fclose(fp); | |
} | |
int count_slashes(char word[128]) { | |
int slash = 0; | |
for(int i = 0; word[i] != '\0'; i++) | |
if (word[i] == '/') slash++; | |
return slash; | |
} | |
int comma_count(char word[128]) { | |
for(int i = 0; word[i] != '\0'; i++) { | |
if (word[i] == ',') return 1; | |
} | |
return 0; | |
} | |
int should_ignore(char w[128], int slash) { | |
int size = strlen(w); | |
if (w[size-3] == 'P' && w[size-2] == 'N' && w[size-1] == 'M') return 0; | |
if (w[size-3] == 'D' && w[size-2] == 'G' && w[size-1] == 'T') return 0; | |
if (isdigit(w[size-1])) return 0; | |
if (slash < 2) return 1; | |
return ((w[size-3] == 'P' && w[size-2] == 'N' && w[size-1] == 'T') || (w[0] == '<' || w[0] == '\n')); | |
} | |
void parse(char word[128]) { | |
int slash_count = count_slashes(word); | |
if (should_ignore(word, slash_count)) return; | |
char to_write[128]; | |
if (slash_count < 2) { | |
sscanf(word, "%[^/]", to_write); | |
} else { | |
int first_slash = 0; | |
for(int i = 0; word[i] != '\0'; i++) { | |
if (word[i] == '/') { | |
first_slash = i; | |
break; | |
} | |
} | |
sscanf(word+first_slash+1, "%[^/]", to_write); | |
if (to_write[0] == '?') { | |
sscanf(word, "%[^/]", to_write); | |
} | |
} | |
if (comma_count(to_write)) { | |
sscanf(to_write, "%[^,]", to_write); | |
} | |
if (to_write[0] == ';' || to_write[0] == '&' || to_write[0] == '#') return; | |
for (int i = 0; to_write[i]!='\0'; i++) | |
to_write[i] = tolower(to_write[i]); | |
FILE *fp = fopen("result.txt", "a"); | |
fprintf(fp, "%s\n", to_write); | |
fclose(fp); | |
} | |
int main() { | |
char word[128]; | |
FILE *fp = fopen("exemplo.txt", "r"); | |
int c; | |
clear_result(); | |
fscanf(fp, "%*s"); | |
while ((c = fgetc(fp)) != EOF) { | |
fscanf(fp, "%s", word); | |
parse(word); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment