I have a large list of phrases such as
"Nola jumped off the cliff"
"Loroy jumped off the cliff"
"Nola jumped off the couch"
"Leroy lept off the couch"
I need to find each point in a phrase that is a different word and add that word to a node, which is a list of words that can be used in that position in a phrase. So we would end up with.
"Node1(1) Node2(1) off the Node3(1)"
"Node1(2) Node2(1) off the Node3(1)"
...etc
Where node 1 represents a list of the names(Nola,Leroy), node2 represents a list of the actions(jumped,lept) and node3 ends up representing the list of locations(cliff,couch)
The idea is to take a list of the phrases, and have it automatically create the nodes and fill it with the words that can be used at that node in a phrase.
So, 1st how would I generate the list of phrase nodes? I haven't been able to figure out how to compare two sentences and see if they are exactly alike minus one word.
2nd once I have the nodes set up, what would be the best way to compare all the combinations of the nodes to come up with new matches? (hope that made sense)