I would like to split a string like that:
"'Hi, how are you?' he said."
in this array:
["'", "Hi", ",", " ", "how", " ", "are", " ", "you", "?", "'", " ", "he", " ", "said", "."]
in my js script. I tried with some regexp, but I'm not very good at using it. Can anyone help me?