I'm trying to split a string:
string f = r.ReadToEnd();
string[] seperators = new string[] {"[==========]"};
string[] result;
result = f.Split(seperators, StringSplitOptions.None);
There's this ========== thing that separates entries. For the life of me, I can't get this to work. I've got a ruby version working...BUT using the string splitter classes I thought I knew for .NET doesn't seem to be working so well.
Any ideas what I'm doing wrong?