ch1-02.l
来自「YACC与LEX教程 英文原版(中文书附代码与答案)」· L 代码 · 共 42 行
L
42 行
%{/* * this sample demonstrates (very) simple recognition: * a verb/not a verb. */%}%%[\t ]+ /* ignore white space */ ;is |am |are |were |was |be |being |been |do |does |did |will |would |should |can |could |has |have |had |go { printf("%s: is a verb\n", yytext); }[a-zA-Z]+ { printf("%s: is not a verb\n", yytext); }.|\n { ECHO; /* normal default anyway */ }%%main(){ yylex();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?