Tagged Questions
0
votes
5answers
70 views
simple regular expression question
How to match aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab where number of a's should be min of 10?
I mean i know this way:
[a][a][a][a][a][a][a][a][a][a][a][a][a]a*b
But there must be a better elegant ...
0
votes
1answer
638 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 ...