AssemblyCSharp.StringExtensions.SubstringAfterLast C# (CSharp) Method

SubstringAfterLast() public static method

public static SubstringAfterLast ( this self, string needle ) : string
self this
needle string
return string
        public static string SubstringAfterLast(this string self, string needle)
        {
            var index = self.IndexOf(needle);
            return index >= 0 ? self.Substring(index + needle.Length) : null;
        }