Lex是一个生成词法分析器的计算机程序。 Lex读取指定词法分析器的输入流,并输出以C编程语言实现词法分析器的源代码。
用于执行lex程序的命令为:
lex abc.l (abc is the file name)
cc lex.yy.c -efl
./a.out
让我们看一下lex程序来检查有效的电子邮件。
例子:
Input: geeks for geeks
Output: 5
Input: facebook google yahoo
Output: 8
下面是实现:
/*lex code to find the length of the longest word*/
% {
int counter = 0; %
}
%
% [a - zA - Z] + {
if (yyleng > counter) {
counter = yyleng;
}
} %
%
main() {
yylex();
printf("largest: %d", counter);
printf("\n");
}
输出:
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。