LoginSignup
0
0

More than 3 years have passed since last update.

Craft CMS のテンプレートやエントリー URI 形式などでゼロパディングする

Posted at

"%05d"|format(123) の形で桁数を指定しつつ format フィルタに数値をセットすると、ゼロパディングができる。

{% for i in 1..5 %}
  {{ "%03d"|format(i) }}<br>
{% endfor %}

この出力結果は下記になる。

001
002
003
004
005

なお、エントリー URI 形式 欄など個別ページの URL を定義するにあたって同様のフィルタ処理を適用したい場合は

news/{{"%05d"|format(id)}}

のように二重括弧で括ればよい。

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