Algorithmix.Forensics.OCR.StripNewLine C# (CSharp) 메소드

StripNewLine() 공개 정적인 메소드

public static StripNewLine ( string text ) : string
text string
리턴 string
        public static string StripNewLine(string text)
        {
            return text.Replace("\r\n", "");
        }