「kotlin入門」文字列から日付への変換のサンプル
構文
DateTimeFormatter.ofPattern(xxx)
サンプルコード
val cft = LocalDate.parse(“2020-11-04")
val fmt = DateTimeFormatter.ofPattern(“yyyy/MM/dd")
val fmtDate = cft.format(fmt)
plintln(fmtDate)
Coding Changes the World
構文
DateTimeFormatter.ofPattern(xxx)
サンプルコード
val cft = LocalDate.parse(“2020-11-04")
val fmt = DateTimeFormatter.ofPattern(“yyyy/MM/dd")
val fmtDate = cft.format(fmt)
plintln(fmtDate)