PDA

View Full Version : All words possibles


sermak
06-02-2009, 12:38 PM
I wonder whether I do or how to write a word and give it all possible solutions with the same word, is how it is ....

E.g.

Initial Word: Word

Drow
rdow
wrdo
etc.

ShadowUK
06-02-2009, 12:51 PM
I wonder whether I do or how to write a word and give it all possible solutions with the same word, is how it is ....

E.g.

Initial Word: Word

Drow
rdow
wrdo
etc.

Need a lot of string work.

holtgrewe
06-03-2009, 09:09 AM
I wonder whether I do or how to write a word and give it all possible solutions with the same word, is how it is ....

E.g.

Initial Word: Word

Drow
rdow
wrdo
etc.

Google 'mathematical permutations' - you will find that a 3 letter word has 6 different combinations/permutations (3*2*1); and a four letter word would have 24 different permutations (4*3*2*1); etc.

Given that information, I'm sure a function could be written to assemble all possible combination for you; however the combinations for larger words could be staggering.

hth & good luck.