I am trying to save the groups in a string to an array so that I can use them in individual variables if I need to. For this I use split but for some reason I only
Just replace your line:
ultimate_array = string_final.split("#$");
with:
ultimate_array = string_final.Split(new string[] { "#$" }, StringSplitOptions.None);
I hope your problem is resolved...