반응형
특정 문자 앞을 0으로 채우기
1값에 특정 길이까지 0으로 채우기
string fmt = "0000"; int intValue = 1; intValue.ToString(fmt); //0001로 변경됨 |
예제 >>
string fmt = "00000000.##"; int intValue = 1053240; decimal decValue = 103932.52m; float sngValue = 1549230.10873992f; double dblValue = 9034521202.93217412; // Display the numbers using the ToString method. Console.WriteLine(intValue.ToString(fmt)); Console.WriteLine(decValue.ToString(fmt)); Console.WriteLine(sngValue.ToString(fmt)); Console.WriteLine(dblValue.ToString(fmt)); Console.WriteLine(); // Display the numbers using composite formatting. string formatString = " {0,15:" + fmt + "}"; Console.WriteLine(formatString, intValue); Console.WriteLine(formatString, decValue); Console.WriteLine(formatString, sngValue); Console.WriteLine(formatString, dblValue); // The example displays the following output: // 01053240 // 00103932.52 // 01549230 // 9034521202.93 // // 01053240 // 00103932.52 // 01549230 // 9034521202.93 |
참고: https://msdn.microsoft.com/ko-kr/library/dd260048(v=vs.110).aspx
반응형
'C#' 카테고리의 다른 글
C# IP, Email 스팸 패턴으로 Spam 메일 차단하기 + 문자열 배열에 비교 (0) | 2018.04.26 |
---|---|
Visual Studio 2017 프로그램 Update 하기 (0) | 2018.04.21 |
C# 사설 / 공인 IP 구하기 ( Internal / External IP Address ) (0) | 2018.04.20 |
Null 공백문자 확인 String.IsNullOrWhiteSpace Method (String) (0) | 2018.04.18 |
C# object를 JSON 형식으로 바꾸기 (.NET4) (0) | 2018.01.30 |
Entity Framework 필드에 최대값(.Max()) 구하기 (0) | 2018.01.30 |
C#에서 ComboBox 첫번째 항목으로 선택하기 (0) | 2018.01.12 |
C# Entity Framework join 하기 (0) | 2018.01.11 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)