public static class Program
public static string Substring(this string s, string arg, StrCut e)
if (string.IsNullOrEmpty(s) || string.IsNullOrEmpty(arg)) return string.Empty;
if (arg.Length > s.Length) return string.Empty;
int 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 SourceURL = " {\"InsertSymbolText\",\"InsertSymbol\"},";
Console.WriteLine("Let's get rid of length param, like this Substring(0) = " + SourceURL.Substring(0));
Console.WriteLine("BEGIN - Most of time, I just want to get a supply a string a work around it");
Console.WriteLine("org = "+ SourceURL);
Console.WriteLine("AfterLessStr = " + SourceURL.Substring(SURL,StrCut.AfterLessStr));
Console.WriteLine("AfterInclStr = " + SourceURL.Substring(SURL,StrCut.AfterInclStr));
Console.WriteLine("BeforeInclStr = " + SourceURL.Substring(SURL,StrCut.BeforeInclStr));
Console.WriteLine("BeforeLessStr = " + SourceURL.Substring(SURL,StrCut.BeforeLessStr));
Console.WriteLine("END");