up vote 5 down vote favorite
4
share [g+] share [fb]

I need a simple random English sentence generator. I need to populate it with my own words, but it needs to be capable of making longer sentences that at least follow the rules of English, even if they don't make sense.

I expect there are millions of them out there, so rather than re-inventing the wheel, I'm hoping you know of a source for one, or a resource that will give me enough information that I don't have to hunt down my rusty English skills.

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

You're looking for an implementation of markov chains for English sentences.

A quick Google search for "markov chain sentence generator" returned:

link|improve this answer
note to self: submit the answer before doing the Google search. – Can Berk Güder Mar 18 '09 at 19:57
feedback

You might be able to use/modify part of the CS Paper Generator.

link|improve this answer
feedback

Do a google for Markov Chains - as an example I found this one in Perl.

link|improve this answer
feedback

Here's one in Perl (with a C version) that you can seed with text of your choice, similar to a Markov chain.

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.