Beachcomber
New Member
- Joined
- Oct 12, 2005
- Messages
- 12
I'm trying to manipulate a text string by finding the location of the first vowel within the string (a,e,i,o,u), then taking all the characters up to the vowel and placing them at the end of the text string.
For example, if we have the text string "dream", the result would be "eamdr".
I've experimented with the FIND() function to locate the vowel within a text string (if it exists), then simply using LEFT() with the number of characters up to the first vowel to paste that at the end of the original text string. For simplicity I'm only concerned about lower case vowels (a,e,i,o,u). However, I'm experiencing difficulty trying to bring it all together. Any suggestions? Any help would be appreciated.
For example, if we have the text string "dream", the result would be "eamdr".
I've experimented with the FIND() function to locate the vowel within a text string (if it exists), then simply using LEFT() with the number of characters up to the first vowel to paste that at the end of the original text string. For simplicity I'm only concerned about lower case vowels (a,e,i,o,u). However, I'm experiencing difficulty trying to bring it all together. Any suggestions? Any help would be appreciated.