반응형
// https://stackoverflow.com/questions/9287063/does-dart-have-sprintf-or-does-it-only-have-interpolation
// https://mobile-app-developer.tistory.com/8
void main() {
int origin = 33;
String formatted = origin.toString().padLeft(5, "0");
print(formatted);
print(int.parse(formatted));
}
formatted = 5자리 숫자, 빈자리는 0으로
반응형
'[Flutter]' 카테고리의 다른 글
[Flutter] 인터넷 연결 확인 (0) | 2022.07.12 |
---|---|
[Flutter] 새출발 - 앱 아이콘, 앱 이름 변경 (0) | 2022.06.30 |
[Flutter] Future / async / await 예제 메모 3 (0) | 2022.03.12 |
[Flutter] Future / async 예제 메모2 (0) | 2022.03.12 |
[Flutter] Amplify api key 만료시 대응 (0) | 2022.03.03 |