split on space javascript code example
Example 1: js split text on spaces
var string = "text to split";
var words = string.split(" ");
Example 2: javascript explode
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Example 3: split by whitespace javascript
var text = "hoi how are you";
var arr = text.split(/\s+/);
Example 4: javascript split
var names = 'Harry ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand ';
console.log(names);
var re = /\s*(?:;|$)\s*/;
var nameList = names.split(re);
console.log(nameList);