%{
#include<stdio.h>
%}
%%
("<"|"<\\")[a-z|A-Z|0-9]*">" {printf(" ");}
%%
main()
{
yylex();
return 0;
}
int yywrap()
{
}
Sample output
<html>test file<\html>
test file
Copyright secured by Digiprove © 2018 Humble Chirammal A website about linux, kvm,gluster, ceph, kubernetes and programming
%{
#include<stdio.h>
%}
%%
("<"|"<\\")[a-z|A-Z|0-9]*">" {printf(" ");}
%%
main()
{
yylex();
return 0;
}
int yywrap()
{
}
Sample output
<html>test file<\html>
test file
Copyright secured by Digiprove © 2018 Humble Chirammal