I have to split this string here in JavaScript:
hl=windows xp \"windows xp\"
to three words.
I used:
keywords = keywords.split(/ /);
But then i got 4 words:
windows
xp
\"windows
xp\"
How could i split this string to just 3 words?
EDIT: and how do i remove the \".
hl=...line is missing these quotes.