Tagged Questions
10
votes
5answers
212 views
Create set of all possible matches for a given regex
I'm wondering how to find a set of all matches to a given regex with a finite number of matches.
For example:
All of these example you can assume they start with ^ and end with $
`hello?` -> ...
8
votes
2answers
108 views
Derive minimal regular expression from input
I have a remote "agent" that returns "yes" or "no" when handed a string. Communicating with this agent is expensive, so I'm hoping to find a library that will allow me to iteratively build a regular ...
7
votes
5answers
773 views
Regular expressions Equivalence
Is there a way to find out if two arbitrary regular expressions are equivalent? Looks like complex problem to me, but there might be some DFA simplification mechanism or something?
5
votes
2answers
406 views
Efficient algorithm for converting a character set into a nfa/dfa
I'm currently working on a scanner generator.
The generator already works fine. But when using character classes the algorithm gets very slow.
The scanner generator produces a scanner for UTF8 ...
5
votes
6answers
831 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
94 views
How to figure out if a regex implementation uses DFA or NFA?
I'm facing the question, whether a certain regex implementation is based on a DFA or NFA.
What are the starting points for me to figure this out. One could also ask: What am I looking for? What are ...
3
votes
4answers
2k views
DFA vs NFA engines, what is the difference in their capabilities and limitations?
Look for a non-technical explanation of the difference between DFA vs NFA engines based on their capabilities and limitations. Thanks!
3
votes
1answer
1k views
DFA based regular expression matching - how to get all matches!
I have a given DFA that represent a regular expression.
I want to match the DFA against an input stream and get all possible matches back, not only the lestmost-longest match.
For example:
regex: ...
2
votes
1answer
80 views
Producing a picture of DFA that recognizes given regexps
Is there a tool that will accept a list of regexps and produce a picture of the minimal DFA that will recognize these regexps, each into its corresponding final state?
It should look something like ...
2
votes
3answers
296 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
3answers
797 views
questions on nfa and dfa
Hope you help me with this one....
I have a main question which is ''how to judge whether a regular expression will be accepted by NFA and/or DFA?
For eg. My question says that which of the regular ...
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
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
216 views
regexp-to-DFA algorithm
I try to write regexp-based lexical analyzer generator, based on regexp to DFA direct translation algorithm described in "Dragon Book".
Now its correctly calculate nullable/firstpos/lastpos/followpos ...
1
vote
2answers
361 views
library for converting regular expressions to NFAs?
Is there a good library for converting Regular Expressions into NFAs? I see lots of academic papers on the subject, which are helpful, but not much in the way of working code.
My question is due ...
0
votes
0answers
33 views
Need to generate a payload for particular Regular Expression (PCRE) [closed]
I need some command line tool in Linux that will generate a payload of say 1 MB for me that will have a few matches for a particular Regular Expression.
Something like if I give a particular PCRE to ...
0
votes
2answers
59 views
Regex: Matching ',' after zero or odd occurrences of a double quote
I am attempting to pull apart a row from a CSV file without using a parser and all I need to do is split the string based on the commas using php. In itself this is fairly easy if you have no commas ...
0
votes
1answer
61 views
How to convert (ab u aab u aba)* into a NFA?
(ab u aab u aba)*
I did it but I would like some feedback on its correctness:
If it is correct: Can we simplify (ab u aab u aba)* any further?
If not: What did I miss?
EDIT: It seems I am missing ...
0
votes
1answer
215 views
Has anyone used RE2 in a C# application?
I started my search a for a decent Regular Expression engine. It landed me to this page Benchmark of Regex Libraries. I decide to use RE2 becuase it seems to be the best FSA engine in this list.
...