I have a very simple string like the following
'kyo, 1, koko, yuyu'
then I would like to add single quotes to each word to get something like
'' kyo ',' 1 ',' koko ',' yuyu ''
Even if possible I would like to respect the whole values, I guess I can separate them by commas with split but my real question is how can I add the quotes between the commas and return everything in a single string Any ideas? A thousand thanks.