otherMatchArray= "March | Monday | Tuesday|| December | Wednesday | Friday"
string[] matchData = otherMatchArray.Split('||');
How can I split one string and then split it again using || and | ?
otherMatchArray= "March | Monday | Tuesday|| December | Wednesday | Friday"
string[] matchData = otherMatchArray.Split('||');
How can I split one string and then split it again using || and | ?
string[] matchData = otherMatchArray.Split(new string[] { "||" }, StringSplitOptions.None);