My specific question is I want to split an string using javascript split function like
my input string is:- "Andy and sandy" are going
and I am expecting my output in an array like
var Result= ["Andy and sandy","are","going"];
My script will be like
var str='"Andy and sandy" are going';
var Result=str.split(RegularExp);//what would be the RegularExp ?
Or is there any other way please help me out.
Thanks!