Dart toUpperCaseを使ってアルファベットの文字列を大文字に変換する
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
文字列.toUpperCase()
アルファベットの文字列を大文字に変換するには、「 toUpperCase 」を使用します。
操作例
void main() { String str = 'sbc'; print(str.toUpperCase()); }
実行結果
SBC
Coding Changes the World
環境
Windows 11 pro 64bit
Dart 2.18.4
構文
文字列.toUpperCase()
アルファベットの文字列を大文字に変換するには、「 toUpperCase 」を使用します。
操作例
void main() { String str = 'sbc'; print(str.toUpperCase()); }
実行結果
SBC