javascript split string by space code example

Example 1: js split text on spaces

var string = "text to split";
var words = string.split(" ");

Example 2: javascript explode

//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");

Example 3: string split javascript

var myString = "An,array,in,a,string,separated,by,a,comma";
var myArray = myString.split(",");
/* 
*
*  myArray :
*  ['An', 'array', 'in', 'a', 'string', 'separated', 'by', 'a', 'comma']
*
*/

Example 4: js string to array

var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks

Example 5: javascript explode space

var str   = "my car is red";
var stringArray = str.split(/(\s+)/);

console.log(stringArray); // ["my", " ", "car", " ", "is", " ", "red"]

Tags:

Php Example