Notice
Recent Posts
Recent Comments
Link
투케이2K
35. (kotlin/코틀린) toUpperCase , toLowerCase 사용해 영어 대문자 및 소문자 변경 실시 본문
/* =========================== */
[개발 환경 설정]
개발 툴 : Eclipse
개발 언어 : kotlin
/* =========================== */
/* =========================== */
[소스 코드]
package ex1
//===== [코틀린 메인 시작 부분] =====
fun main(args : Array<String>) {
/*
[설 명]
1. toUpperCase : 영어 대문자로 변경합니다
2. toLowerCase : 영어 소문자로 변경합니다
*/
println("[toUpperCase , toLowerCase 사용해 영어 대문자 및 소문자 변경 실시]")
//string 변수 선언 실시
var str_data = "abCDefgHIJ"
println("원본 :"+str_data)
//toUpperCase 대문자 변경 실시
var str_up_data = str_data.toUpperCase()
println("대문자 :"+str_up_data)
//toLowerCase 소문자 변경 실시
var str_lo_data = str_data.toLowerCase()
println("소문자 :"+str_lo_data)
}//메인 종료
/* =========================== */
/* =========================== */
[결과 출력]
/* =========================== */
/* =========================== */
[요약 설명]
1. toUpperCase : 영어 대문자로 변경합니다
2. toLowerCase : 영어 소문자로 변경합니다
/* =========================== */
반응형
'Kotlin' 카테고리의 다른 글
Comments