What is the best开发者_Go百科 cross-browser practice to split spaces in a string with Javascript?
I tried theString.split(" ")
but i am having issues with IE and Chrome/Safari.
Update
Here's the js code. IE/Chrome throw error at line: 61
http://pastie.org/1151951
To avoid having empty parts, split with the help of a regex:
var parts = theString.split(/ +/);
Optionally, trim string before splitting.
var parts = theString.replace(/^\s+|\s+$/g, "").split(/ +/);
Below seems to work fine for me
someText.split(/\s/)
With whitespace removal
someText.split(/\s+/)
精彩评论