Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Imagine you are going to write a compiler for a new programming language. The first step is building a Lexical Analyzer. So, your job in
Imagine you are going to write a compiler for a new programming language. The first step is building a Lexical Analyzer. So, your job in this homework is: 1) Describing the tokens of the lexical analyzer using regular expressions 2) Write a simple tokenizer using JayaCc Task 1 (Regular Expressions) Write the Regular Expressions for this new language constructs to identify the tokens: Regular Expression Identifier Integer Floating point numbers Description It must start with $ followed by arbitrary combinations of capital and small letters with any length, then end with at least one digits It contains any combinations of digits with any length at least one digit followed by a decimal dot then followed by any combinations of digits with any length There is no mathematical operations ...etc , they are written as string as: Addition: PLUS Subtraction: MINUS Multiplication: MULT Division: DIV Arithmetic Operations
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started