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;
}
'프로그래밍 > C#' 카테고리의 다른 글
C# 나이 계산 만나이 계산 (0) | 2019.11.12 |
---|---|
C# devexpress 윈도우 10 폰트 문제 해결 (0) | 2019.09.17 |
SMTP 서버에 보안 연결이 필요하거나 클라이언트가 인증되지 않았습니다. (0) | 2018.03.05 |
datagridview rows 삭제 하는 방법 (0) | 2017.04.26 |
c# mp3 or wav file play (0) | 2017.04.06 |
댓글