If I have a string like this:
"word1 'word2' word3"
is it possible to use a regex replace to change the string to this:
"word1 word3 'word2'"
I know what word1 and word3 will be, but do not know what word2 will be, but it will always be in single quotes.