Skip to content
Snippets Groups Projects
Commit cf114feb authored by Alexis Nasr's avatar Alexis Nasr
Browse files

little modifications in mcf2json: double quote is replaces by &quot, when no...

little modifications in mcf2json: double quote is replaces by &quot, when no offset in input file, the token index are used
parent d1b2e386
No related branches found
No related tags found
No related merge requests found
......@@ -281,12 +281,25 @@ void print_token(FILE *output_file, word_buffer *wb, int index)
int offset_col = mcd_get_offset_col(word_buffer_get_mcd(wb));
int length_col = mcd_get_length_col(word_buffer_get_mcd(wb));
word *w = word_buffer_get_word_n(wb, index);
char token[5000];
int length_token, i;
fprintf(output_file, "{ ");
fprintf(output_file, "\"id\": %d, ", word_get_offset(w));
if(word_get_offset(w) != -1)
fprintf(output_file, "\"id\": %d, ", word_get_offset(w));
else
fprintf(output_file, "\"id\": %d, ", word_get_index(w));
fprintf(output_file, "\"word\": \"");
if(form_col != -1)
word_print_col_n(output_file, w, form_col);
if(form_col != -1){
word_sprint_col_n(token, w, form_col);
length_token = strlen(token);
for(i=0; i < length_token; i++){
if(token[i] == '"')
fprintf(output_file, "&quot");
else
fprintf(output_file, "%c", token[i]);
}
}
else
fprintf(output_file, "_");
fprintf(output_file, "\", ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment