Notice
Recent Posts
Recent Comments
Link
투케이2K
375. (kotlin/코틀린) String.format 사용해 %d , %f 정수 및 소수 값 포맷 출력 실시 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// ---------------------------------------------------------------
// [로직 처리 실시]
// ---------------------------------------------------------------
try {
/**
* --------------------------------------
* [요약 설명]
* --------------------------------------
* 1. String.format : 지정한 형식에 맞게 대입된 값을 String 으로 변환해줍니다
* --------------------------------------
* 2. 포맷 형식 참고 :
*
* %d = 정수 / %f = 소수 / %s = 문자열
* --------------------------------------
* */
// [정수 변수 선언]
var int_data = 5
var intToString = String.format("%03d", int_data) // [3자리 문자열을 출력하면서 대입 값에서 모자란 자릿수는 앞쪽 기준 0 채운 후 출력]
// [소수 변수 선언]
var float_data = 123.5
var floatToString = String.format("%.2f", float_data) // [소수점 2자리까지 출력 지정 : 모자란 자릿수는 뒤쪽 기준 0 채운 후 출력]
// [로그 출력]
S_Log._W_("로직 수행 결과 출력", arrayOf(
"intToString :: " + intToString,
"floatToString :: " + floatToString
))
}
catch (e : Exception) {
S_Log._printStackTrace_(A_Intro@this, "예외 상황 발생", null, e)
}
[결과 출력]
W///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.A_Intro.onCreate(A_Intro.kt:171)]
I/: ----------------------------------------------------
I/: [LOG :: NOW TIME :: 2023-08-14 17:01:45 월요일]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 로직 수행 결과 출력]
I/: ----------------------------------------------------
I/: [LOG :: intToString :: 005]
I/: ----------------------------------------------------
I/: [LOG :: floatToString :: 123.50]
W///===========//: ================================================
반응형
'Kotlin' 카테고리의 다른 글
Comments