The program puts every line in parenthesis.
For example
appears
Here is the code :
%{
%}
%%
[a-z A-Z]+ {printf("{%s}",yytext);}
%%
main()
{
extern FILE *yyin;
yyin=fopen("new","r");
yylex();
}
For example
I am going
We are going
We are going
appears
{I am going}
{We are going}
{We are going}
Here is the code :
%{
%}
%%
[a-z A-Z]+ {printf("{%s}",yytext);}
%%
main()
{
extern FILE *yyin;
yyin=fopen("new","r");
yylex();
}
No comments:
Post a Comment