string[] Parse(string toBeParsed, string Condition) {return toBeParsed.Split(new string[] {Condition},StringSplitOptions.RemoveEmptyEntries);} /* Tiniest readable parser code. Parses the given string with the given condition and puts them in an array. Usage: string[] Parsed = Parse(textToBeParsed, Condition); */