Antlr4.StringTemplate.Misc.Utility.Strip C# (CSharp) 메소드

Strip() 공개 정적인 메소드

public static Strip ( string s, int n ) : string
s string
n int
리턴 string
        public static string Strip(string s, int n)
        {
            return s.Substring(n, s.Length - 2 * n);
        }