vote up 4 vote down star
4

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.

flag

4 Answers

vote up 7 vote down check

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

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

link|flag
note to self: submit the answer before doing the Google search. – Can Berk Güder Mar 18 at 19:57
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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