Q:

split string jquery

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);
4

var str = "How are you doing today?";

var res = str.split(" ");
 
7

New to Communities?

Join the community