I'm looking for an eloquent way to mix up the middle characters of words in a string, as in "this is an example string" becomes "tihs is an eplamxe sritng." I'm thinking first separate the words into an array, select words longer than two characters, separating out the first and last letters for the first part, but I can't figure out a good way to scramble them.
|
feedback
|
This method splits the string into an array of characters, shifts off the first character and pops off the last. The middle part(if any) is then spliced, one random character at a time, and added to the prefix. It is returned with the suffix added last. //edit- multiple words
| |||||||||||
feedback
|
|
Edit Much better answer. Here's a quick and dirty approach. You can use a regular expression to find all strings at least 3 characters long and pull out the first character, the last character, and the middle characters. Then you simply split the array of middle characters, randomly sort them and join them back together, sticking the first and last characters back on.
| |||||
|
feedback
|
|
Write a function that takes an array and shuffles everything between index i and j. You can find examples here Now from the string identify all pairs of start and end indexes of all words. Call your shuffle function for all pairs | |||
|
feedback
|
|
Here is some code to do that for you:
Shuffle function taken from here: http://snippets.dzone.com/posts/show/849 Here you go: http://jsfiddle.net/66LXx/ | |||
|
feedback
|
|
This code does the trick,Well yes as you said I have considered finding out string length in if condition but It must be greater than 3 not than 2.
| ||||
|
feedback
|