Tagged Questions

0
votes
1answer
69 views

Quotes in string (f)lex AT&T

How can I write a regular definition in (f)lex for quoted strings from AT&T language? Example of string that come to my mind: "abc" "a\"bc" "abc\" "abc\"" Later edit: "abc" "def" should be …
4
votes
5answers
262 views

Is it possible to simplify this regular expression any further?

I'm working on some homework for my compiler class and I have the following problem: Write a regular expression for all strings of a's and b's that contain an odd number of a's or an odd number of …
1
vote
1answer
41 views

Textual Protocol which is not a regular language ?

Hi, The usual way to represent way the grammar associated with a textual network protocol is using ABNF. Just like any EBNF-related meta-syntax, ABNF enables to describe context-free grammars. …