0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

formatter の便利な使い方

Posted at

こんにちは、新人エンジニアの三上です。

本日は formatter の便利な使用方法を紹介します。

formatter

以下のように formatter を使用すると1つの処理で
LocalDateTime から string 型への変換と、任意の文字列の付加を同時に行うことが出来ます。

formatter
    val tmpTime = LocalDateTime.now()
    val formatterTime = tmpTime.format(DateTimeFormatter.ofPattern("yyyy/M月対象"))
    println(formatterTime)

出力結果(※本日日付 2024/11/24)

2024/11月対象

まとめ

今回紹介した実装を使用することで、簡潔で分かりやすく実装を記載することが出来ます。

以上、三上でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?