I have a string, with characters [a-zA-Z], (, ), +, - etc.
I want to find every word within that string and replace it with the same word with \'word\' (single quotes added). Words in that string can begin or end with "(", ")", and spaces.
How do I go about doing that?
Input: (Movie + 2000)
Output: ('Movie' + '2000')