1
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?

Workato:数値を特定の桁数で先頭0埋めしたい

Posted at

はじめに

1,2,3という数字を、001,002,003のような特定の桁数で先頭0埋めしたい場合は、Formulaを利用すると簡単に先頭0埋めを実現することができます。

手順

先頭0埋めしたいフィールドをFormulaモードへ切り替え、次の通り入力します。

"%03d" % <<値(データピル)>>.to_i

上記の場合、3桁の先頭0埋めで結果が出力されます。また、0埋めの桁数を5桁にしたい場合は、 %03d%05d に変更することで5桁の先頭0埋めが可能です。

具体的な手順については、以下の図を参照ください。

image.png

関連情報

本設定は、sprintfフォーマットに準じます。

1
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
1
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?