up vote 14 down vote favorite
3
share [g+] share [fb]

Yup, you read that right. I need a library that is capable of generating random text from a regular expression. So the text should be random, but be matched by the regular expression. It seems it doesn't exist, but I could be wrong.

Just a an example: that library would be capable of taking '[ab]*c' as input, and generate samples such as:

abc
abbbc
bac

etc.

Update: I created something myself: Xeger. Check out http://code.google.com/p/xeger/.

link|improve this question

1  
Cool idea - interested to hear the results. – Ryall Oct 16 '09 at 15:27
This would indeed be quite useful! – p3t0r Oct 16 '09 at 15:28
I think any "...or more" selectors would have to be limited though or you could end up with 1,000,000 character words :S – Ryall Oct 16 '09 at 15:35
1  
You know the saying about the monkeys that could write Shakespeare (Infinite Monkey Theorem) ... well quick and dirty solution: generate random string until you have one that match. That could take a while :-). I would like to see a real reply though. – vdr Oct 16 '09 at 15:39
1  
This sounds like it might be an interesting little project. – Herms Oct 16 '09 at 15:46
show 6 more comments
feedback

4 Answers

I am not aware of such a library. If you're interested in writing one yourself, then these are probably the steps you'll need to take:

  1. Write a parser for regular expressions (you may want to start out with a restricted class of regexes).

  2. Use the result to construct an NFA.

  3. (Optional) Convert the NFA to a DFA.

  4. Randomly traverse the resulting automaton from the start state to any accepting state, while storing the characters outputted by every transition.

The result is a word which is accepted by the original regex. For more, see e.g. Converting a Regular Expression into a Deterministic Finite Automaton.

link|improve this answer
I have been looking for a library that would create an NFA from regex in Java. I know the above would work, since I used to do that in Javascript ages ago. – Wilfred Springer Oct 17 '09 at 10:08
I guess this would be worth to take a look at: brics.dk/~amoeller/automaton – Wilfred Springer Oct 17 '09 at 10:10
I implemented Xeger based on the library I mention above. – Wilfred Springer Jan 7 '10 at 16:59
feedback

Here's a few implementations of such a beast, but none of them in Java (and all but the closed-source Microsoft one very limited in their regexp feature support).

link|improve this answer
feedback
up vote 0 down vote accepted

I just created a library for doing this a minute ago. It's hosted here: http://code.google.com/p/xeger/. Carefully read the instructions before using it. (Especially the one referring to downloading another required library.) ;-)

This is the way you use it:

String regex = "[ab]{4,6}c";
Xeger generator = new Xeger(regex);
String result = generator.generate();
assert result.matches(regex);
link|improve this answer
feedback

Here is a Python implementation of a module like that: http://www.mail-archive.com/python-list@python.org/msg125198.html It should be portable to Java.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.