JayBawankar

lp flex

Feb 17th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. prac.flex
  2. -------------------------------------------------
  3. %%
  4. %class search
  5. %standalone
  6. %line
  7. %column
  8. whitespace=[\t|\n]+
  9. %%
  10. (a|b)*abb {System.out.printf("Match Found [%s] at line %d at column %d \n",yytext(),yyline,yycolumn);}
  11. [whitespace] {}
  12.  
  13.  
  14.  
  15. jay.txt
  16. ---------------------------------------------------
  17. aabb
  18.  
  19.  
  20.  
  21. // Download jflex-1.4.3 for execution
Add Comment
Please, Sign In to add comment