Tagged Questions

1
vote
1answer
100 views

Java tool for matching multiple regular expressions with priorities to multiple strings

I have an unlimited sequence of strings and numerous regular expressions ordered by priorities. For each string in a sequence I have to to find the first matching regular expression and the matched ...
1
vote
1answer
85 views

distinguishing a string with flex

I need to tokenize some strings which will be splitted of according to operators like = and !=. I was successful using regex until the string has != operator. In my case, string was seperated into two ...
0
votes
1answer
69 views

LookAhead not working in JFlex

I am trying to use JFlex to build a parser but encounter a very basic issue. I want to have this token [A-Za-z]+_N$ { System.out.println("Noun"); } and have it recognize "car_N" as a "Noun" and ...
0
votes
1answer
88 views

jflex: Why does this regex match?

in my lexer I wrote the following regex: "///"\s*[^@\s].* I executed byacc/j in debug mode and it states that the following line matched the regex. But why does this regex match this line? /// ...
0
votes
1answer
242 views

How do I use regular expression capturing groups with JFlex?

Although this question is about JFlex, it probably applies to other scanner generators such as lex, gnu-flex as well. If I have some rule, how can I create a capturing group in part of that rule and ...
0
votes
1answer
274 views

using JFlex instead of Regex

I am new to JFlex. I have gathered that JFlex is a parser generator. However, I am still not clear about the following and need clarification around the same. How different this is from using regex ...
0
votes
3answers
808 views

Matching Lua's “Long bracket” string syntax

I'm writing a jFlex lexer for Lua, and I'm having problems designing a regular expression to match one particular part of the language specification: Literal strings can also be defined using a ...
-1
votes
2answers
87 views

Regex for name problem

I need regex for recognizing names which can be [a-zA-Z_] then . (dot) then again [a-zA-Z_]. I ([a-zA-Z_]+) \.([a-zA-Z_]*) but it doesn't work. Help ? Can anybody give me hoe to do that in JFlex ?