Notice
Recent Posts
Recent Comments
Link
투케이2K
50. (Flutter/플러터) [Mac] : [Dart] : 다트 - toLowerCase , toUpperCase 사용해 영어 소문자 및 대문자 변경 수행 본문
Flutter
50. (Flutter/플러터) [Mac] : [Dart] : 다트 - toLowerCase , toUpperCase 사용해 영어 소문자 및 대문자 변경 수행
투케이2K 2024. 5. 28. 19:58[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Dart
[소스 코드]
import 'package:flutter/material.dart';
import 'dart:developer';
// -----------------------------------------------------------------------------------------
// TODO [main] : [application 의 진입점 역할]
// -----------------------------------------------------------------------------------------
void main() {
/**
* ------------------------------------------------
* [요약 설명]
* ------------------------------------------------
* 1. toLowerCase : 문자열을 전체 영어 소문자로 변경합니다
* ------------------------------------------------
* 2. toUpperCase : 문자열을 전체 영어 대문자로 변경합니다
* ------------------------------------------------
* */
try {
// [초기 변수 선언]
var strData = "Hello, world!!";
// [toLowerCase / toUpperCase 사용해 영어 소문자 및 대문자 변경]
var str_toLowerCase = strData.toLowerCase();
var str_toUpperCase = strData.toUpperCase();
// [로그 출력 수행]
log("");
log("-------------------------------------------------------");
log("str_toLowerCase :: ${str_toLowerCase}");
log("-------------------------------------------------------");
log("str_toUpperCase :: ${str_toUpperCase}");
log("-------------------------------------------------------");
log("");
}
catch (e) {
log("");
log("-------------------------------------------------------");
log("Catch :: ${e}");
log("-------------------------------------------------------");
log("");
}
}
[결과 출력]
반응형
'Flutter' 카테고리의 다른 글
Comments