Tagged Questions
22
votes
10answers
1k views
Is it possible for a computer to “learn” a regular expression by user-provided examples?
Is it possible for a computer to "learn" a regular expression by user-provided examples?
To clarify:
I do not want to learn regular expressions.
I want to create a program which "learns" a regular ...
5
votes
2answers
120 views
Regular Language (yes or no)
I was given the task to check whether this language is regular:
L = {w∈{a,b,c}* | where the number of a is less than the number of b+c.}
I can find neither a regular expression for this, nor a ...
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
4answers
116 views
Making an index for a search by PHP
How can you search only unique words with PHP such that I can learn the basics in making the search?
I have had a few problems in making a multidimensional array for questions.
My first unsuccessful ...
2
votes
1answer
85 views
Finding regular expressions for languages otherwise described
Letting {a b} be the alphabet set, write a regular expression for:
1) The language of all those words in which the number of a's and the number of b's are both odd;
2) The language of all those ...
2
votes
3answers
220 views
Fixing unescaped XML entities in Java with Regex?
I have some badly formatted XML that I must parse. Fixing the problem upstream is not possible.
The (current) problem is that ampersand characters are not always escaped properly, so I need to ...
2
votes
2answers
438 views
Regular expression to match string of 0's and 1's without '011' substring
I'm working on a problem (from Introduction to Automata Theory, Languages and Computer by Hopcroft, Motwani and Ullman) to write a regular expression that defines a language consisting of all strings ...
2
votes
2answers
2k views
Convert regular expression to CFG
How can I convert some regular language to its equivalent Context Free Grammar?
Is it necessary to construct the DFA corresponding to that regular expression or is there some rule for such a ...
1
vote
2answers
49 views
Understanding (and forming) the regular expression of this finite automaton
For the above automaton, the regular expression that has been given in my textbook is the following :
a*(a*ba*ba*ba*)*(a+a*ba*ba*ba*)
I am having trouble deriving this...the following is my ...
1
vote
1answer
299 views
Constructing a Regular Expression from a Finite Automata
I'm trying to construct a regular expression from a Finite Automaton but found my self completely stuck with this one. The regex to use is like this:
? = 0 or 1
* = 0 or more
+= 1 or more
| = or
_ = ...
0
votes
0answers
62 views
converting DFA to regular expressions using kleene closure algorithm
i am working on converting finite automata to regular expression using the kleene closure algorithm and implementation is in java. i am getting confuse to implement that. any specific site to follow ...
0
votes
2answers
141 views
What regular language intersects with 1*0* gives 1n0n
I'm reading a book on automata theory, and the book gives an example that a language with equal number of 0s and 1s intersects with 1*0* would result 1n0n, where n > 0
So my question is, how can I ...