i want to split a string in jquery or javascript with multiple separator.
for one string as separator we can have :
var x = "Name: John Doe\nAge: 30\nBirth Date: 12/12/1981";
var pieces = x.split("\n"), part;
for (var i = 0; i < pieces.length; i++) {
bla bla bla
}
But i want to split such that string(x) with : Age:
and Date:
(mean a string array as separator)
and at last i want a sting array with these parts : "Name: John Doe\n"," 30\nBirth "," 12/12/1981"
that x string is just an example and i dont have any string like that!
how can i rewrite theses codes?