-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfct_time.l
113 lines (95 loc) · 2.01 KB
/
fct_time.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
%{
#include <stdlib.h>
#include<stdio.h>
#include<ctype.h>
FILE* fichier=NULL;
FILE* fichier1=NULL;
%}
CHIFFRE [0-9]+|([0-9]+\.[0-9]*|\.[0-9]+)
IDFCT [a-zA-Z][0-9a-zA-Z]+
%%
({CHIFFRE}" "+{CHIFFRE}*)+{IDFCT}"\n" {
/*extraction de la ligne et copie dans une varible tomporaire*/
int v = strlen(yytext);
char ligne[v];
char phrase[100],nomfct[50];
memset (phrase, 0, sizeof (phrase));
memset (nomfct, 0, sizeof (nomfct));
strcpy(ligne,&yytext[0]);
int position=0,i,j=0,cpt=2;
//elimine les espace
for(i=0;i<v;i++) {
//si ce n'est pas un chiffre
if(isdigit(ligne[i])==0) {
//sauvgarde de la derniere position avant l'espace
position=i;
}
if(ligne[i]== ' ') break;
}
//elimine la premier colonne
for(i=position;i<v;i++) {
if(ligne[i]== ' ') continue;
if(isdigit(ligne[i])!=0){
position=i;
break;
}
}
//elimine les espaces
for(i=position;i<v;i++){
if(ligne[i]== ' '){position=i; break;}
}
//elimine la 2 colonne
for(i=position;i<v;i++) {
if(ligne[i]== ' ') continue;
if(isdigit(ligne[i])!=0){
position=i;
break;
}
}
// a ne pas toucher
//enregistre la trooisieme colonne
for(i=position;i<v;i++){
phrase[j]=ligne[i]; j++;
if(ligne[i]== ' '){
position=i;
break;
}
}
//fin
//encore trois colonnes à eliminé
for(i=position;i<v;i++) {
if(isalpha(ligne[i])!=0){
position=i;
break;
}
}
j=0;
for(i=position;i<v;i++){
if(ligne[i]== ' ') break;
if(ligne[i]== '\n') break;
nomfct[j]=ligne[i];
//fputc(ligne[i],fichier);
j++;
}
fprintf(fichier, "%s ", nomfct);
fprintf(fichier, "%s\n", phrase);
}
.+"seconds" { }
"\n" { }
. {}
%%
int main(){
int caractereActuel = 0;
int tMAX=100,vide=0,i,position,taille;
char chaine[100] = "";
fichier = fopen("teste.txt", "w+");
if (fichier != NULL)
{
yylex();
//printf("\n");
fclose(fichier);
}
else
printf("Impossible d'ouvrir le fichier test.txt");
return EXIT_SUCCESS;
}