Auto spinning relevant words

PeterRydberg

Newbie
Joined
Sep 21, 2011
Messages
9
Reaction score
0
I have a list that look like this:

{a better way|an easy method|an easier way|a way|a means|a healthier way|exactly how|a great way}
{wounds|injuries|incidents|problems|personal injuries|traumas|accidental injuries|damage|injury|accidents}
{a bunch of|a lot of|a number of|a variety of|lots of|numerous|several|a handful of|loads of|quite a few|plenty of|a great deal of|a considerable number of|some|a number|a nice selection of}

Etc..

I want a program reads a text, example:
"That's when she saw a better way of doing it."
and then outputs
"That's when she saw {a better way|an easy method|an easier way|a way|a means|a healthier way|exactly how|a great way} to do it."

What are my alternativs?

I have a huge list of over 16000 posts. (1-3 mb)
 
Using any programming language you can do this. First of all you need a list of keywords and their associated spin text e.g. an associated array. Then your code opens each article/post and replaces the word matches with one of the alternatives. Then saves the spun article. You could code this in c#, php, vb etc.
 
I have a list that look like this:

{a better way|an easy method|an easier way|a way|a means|a healthier way|exactly how|a great way}
{wounds|injuries|incidents|problems|personal injuries|traumas|accidental injuries|damage|injury|accidents}
{a bunch of|a lot of|a number of|a variety of|lots of|numerous|several|a handful of|loads of|quite a few|plenty of|a great deal of|a considerable number of|some|a number|a nice selection of}

Etc..

I want a program reads a text, example:
"That's when she saw a better way of doing it."
and then outputs
"That's when she saw {a better way|an easy method|an easier way|a way|a means|a healthier way|exactly how|a great way} to do it."

What are my alternativs?

I have a huge list of over 16000 posts. (1-3 mb)

acccording to me, the only way for this is use the thebestpinner in manual mode...select each word and you can see a dropdown which gives alternate meaning...
 
Where do you get the list ? Can you PM me where do you get the list and the list itself. I will make a plugin for this you know.
 
Back
Top