I have a string like:
\"super exemple of string key : text I want to keep - end of my string\"
I want to just keep the string which is betw
Something like this perhaps
private static string Between(string text, string from, string to) { return text[(text.IndexOf(from)+from.Length)..text.IndexOf(to, text.IndexOf(from))]; }