I was wondering if anyone had a GetStringBackwards functions in C# that would work like this. str1 = "the weather today is chilly bundle up"; str2 = GetStringBackwards(str1, " bundle up", "today is "); str2 would = "chilly" I have seen this method before but I can't find it!
Why not just GetStringBetween(str1, "today is ", " bundle up") ^ GetStringBetween is just some function I made up, I dunno any C# syntax