[C#] string.format 예제
int 예제 Add zeroes before number String.Format("{0:00000}", 15); // "00015" String.Format("{0:00000}", -15); // "-00015" Align number to the right or left String.Format("{0,5}", 15); // " 15" String.Format("{0,-5}", 15); // "15 " String.Format("{0,5:000}", 15); // " 015" String.Format("{0,-5:000}", 15); // "015 " Different formatting for negative numbers and zero String.Format("{0:#;minus #}", 15..
2021. 1. 19.