Tagged Questions

5
votes
6answers
826 views

DFA Based Regular Expression Engines for Java with Capture

Are there any (free) regular expression engines for Java, that can compile a regular expression to a DFA, and do group capturing while matching the DFA ? I've found dk.brics.automaton and jrexx, ...
4
votes
2answers
273 views

Can I Determine the Set of First Chars Matched by Regex Pattern?

I would like to be able to compute the set of all characters which may be matched as the first character in a string by a given instance of java.util.regex.Pattern. More formally, given the DFA ...
3
votes
2answers
51 views

DFA string validation

i have a program that simply takes all the states as a set of states as a input. and then the next input that is taken is the initial state among the set of states and then set of final states. The ...
2
votes
1answer
90 views

How can I simplify token prediction DFA?

Lexer DFA results in "code too large" error I'm trying to parse Java Server Pages using ANTLR 3. Java has a limit of 64k for the byte code of a single method, and I keep running into a "code too ...
2
votes
3answers
292 views

Data Structure to represent a DFA

I was wondering, what would be the best data structure to represent a DFA? I am looking at converting a regular expression to a DFA and make this particular functionality as a library in Java. The ...
2
votes
2answers
256 views

Modelling a Finite Deterministic Automaton via this data *Edit with new code*

I have this input file: 2 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de The first line represents the number of test cases. Each test case starts with 3 ...
1
vote
1answer
62 views

check if two regexes match the same strings in java

I have two regular expressions (simple example: "[0-9]+" and "[0123456789]+"). I'd like to see if they match exactly the same inputs. Is there a built-in function for doing this check in java? If not, ...
1
vote
4answers
192 views

algorithm for implementing DFA as a linked list

I want to know how to implement a DFA as a linked list in C/C++/Java.
1
vote
1answer
632 views

Java library for converting NFA to DFA

I am looking for a Java library which can convert Non-deterministic Finite Automaton to Deterministic Finite Automaton. Is there any?
0
votes
2answers
47 views

Could I use the DFA to trace strings of a certain Languages?

Generally DFA's are used to check, whether given string is present in a certain language. e.g _ab1c is present in the Language of variables in C. What I am doing? But as stated in this question,I ...