public static class Program
public static string Substring(this string s, string arg, StrCutLoc l, StrCut e)
if (string.IsNullOrEmpty(s) || string.IsNullOrEmpty(arg)) return string.Empty;
if (arg.Length > s.Length) return string.Empty;
if (l.Equals(StrCutLoc.First))
else if (l.Equals(StrCutLoc.Last))
idxarg = s.LastIndexOf(arg);
if (idxarg == -1) return string.Empty;
bool argfits = (idxarg + arg.Length) <= s.Length;
if (e.Equals(StrCut.BeforeLessStr))
s = s.Substring(0, idxarg);
else if (argfits && e.Equals(StrCut.BeforeInclStr))
s = s.Substring(0, (idxarg + arg.Length));
else if (argfits && e.Equals(StrCut.AfterLessStr))
s = s.Substring(idxarg + arg.Length);
else if (e.Equals(StrCut.AfterInclStr))
public static void Main()
string text = "{\"InsertSymbolText\",\"InsertSymbol\"},";
Console.WriteLine("text = "+ text);
Console.WriteLine("Let's get rid of length param, like this Substring(2,2) = " + text.Substring(2,2));
Console.WriteLine("BEGIN - Most of time, I just want to get a supply a string a work around it");
Console.WriteLine("AfterLessStr = " + text.Substring(cut, StrCutLoc.First, StrCut.AfterLessStr));
Console.WriteLine("AfterInclStr = " + text.Substring(cut, StrCutLoc.First, StrCut.AfterInclStr));
Console.WriteLine("BeforeInclStr = " + text.Substring(cut, StrCutLoc.Last, StrCut.BeforeInclStr));
Console.WriteLine("BeforeLessStr = " + text.Substring(cut, StrCutLoc.Last, StrCut.BeforeLessStr));
Console.WriteLine("END");