1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public string Left(string Text, int TextLenth)
{
    string ConvertText;
    if (Text.Length < TextLenth)
    {
        TextLenth = Text.Length;
    }
    ConvertText = Text.Substring(0, TextLenth);
    return ConvertText;
}
//HJH 추가
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;
}
//HJH 추가
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;
}
cs


'C#' 카테고리의 다른 글

C# 정규식을 이용하여 문자열이 숫자인지 판단  (0) 2019.09.19
C# ListView 복사 붙여넣기  (0) 2019.09.19
C# Excel을 PDF  (0) 2019.09.18
C# DataTable to MSSQL Table (21/02/23 수정)  (0) 2018.12.22
C# Excel 업로드  (0) 2018.12.22