I have some strings that I'd like to manipulate with regex.
Input
foo: bar hello: world cats: dogs
Output
foo: 'bar' hello: 'world' cats: 'dogs'
Right now I know I can use Javascript's replace
string method but I'm not sure about the regex to use