본문 바로가기
프로그래밍/C#

C# 에서 left, right, mid 함수 사용방법

by 젤리씨 2018. 12. 18.
728x90

C# 에서 left, right, mid 함수 사용방법


substring를 이용한 방법으로


아래에 필요한 것 복사하고 엑셀처럼 함수 사용하면 됨.



Left 


        public string Left(string Text, int TextLenth)

        {

            string ConvertText;

            if (Text.Length < TextLenth)

            {

                TextLenth = Text.Length;

            }

            ConvertText = Text.Substring(0, TextLenth);

            return ConvertText;

        }

 


Right


        public string Right(string Text, int TextLenth)

        {

            string ConvertText;

            if (Text.Length < TextLenth)

            {

                TextLenth = Text.Length;

            }

            ConvertText = Text.Substring(Text.Length - TextLenth, TextLenth);

            return ConvertText;

        }


 


Mid


        public string Mid(string Text, int Startint, int Endint)

        {

            string ConvertText;

            if (Startint < Text.Length || Endint < Text.Length)

            {

                ConvertText = Text.Substring(Startint, Endint);

                return ConvertText;

            }

            else

                return Text;

        }   

728x90

댓글