摘要: tasks.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ 阅读全文
posted @ 2021-05-17 17:27 Ajanuw 阅读(226) 评论(0) 推荐(0) 编辑
摘要: test.l: %option noyywrap noline %{ #include <iostream> %} %x textSpan str %% "$" { BEGIN(textSpan); } \" { printf("string:"); BEGIN(str); } <textSpan> 阅读全文
posted @ 2021-05-17 16:40 Ajanuw 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 新建c++控制台项目 添加筛选器文件夹 "FlexBison"和"Generator Files" 在"FlexBison"下创建"lexer.l"和"parser.y"文件 右键"lexer.l"属性 命令行: win_flex --wincompat -o %(Filename).cc %(Id 阅读全文
posted @ 2021-05-17 15:52 Ajanuw 阅读(203) 评论(0) 推荐(0) 编辑