3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Integromatで日付を日本時間にする方法

Last updated at Posted at 2021-05-27

Integromatで日付を扱おうとしたら日本の標準時じゃなかったので。

##Integromatにおける日付
ISO 8601 準拠協定世界時(UTC)で統一しているみたいです。

##日本の標準時で扱う方法
formatDate関数を使います。

画像の真ん中下段にあります。

image.png

##formatDateの使い方

formatDate(変換したい日付 ; 日付のフォーマット ; タイムゾーン)

で指定します。
日付のフォーマットはある程度自由に指定できます。

例)
YYYY/MM/DD HH:mm ⇒ 2021/05/27 17:25
YYYY-MM-DD hh:mm a ⇒ 2021-05-27 05:25 pm

タイムゾーンは東京にするのであれば「Asia/Tokyo」を指定します。
他のタイムゾーンにするのであれば下記のページで好きな地域を選び「TZ database name」を指定しましょう。

List of tz database time zones

これで日本時間で日付が扱えるようになります。

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?