split string into an array code example

Example 1: javascript explode

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

Example 2: js string to array

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

Example 3: javascript slice string from character

var input = 'john smith~123 Street~Apt 4~New York~NY~12345';

var fields = input.split('~');

var name = fields[0];
var street = fields[1];

Example 4: split string into array java

String[] array = values.split("\\|", -1);

Tags:

Php Example