Velocity における foreach文

#foreach ($object in $list)

という文にてobjectをlist内で動かしながら反復することができる。


listにはリストを格納している変数だけではなく、内容を列挙したものや、ある範囲の整数を指定することもできる。

#foreach ($color in ["red","green","blue"])
#foreach ($number in [1..5])

[1..5]は1から5までの整数、すなわち[1,2,3,4,5]。


また、これらの中にさらに変数を含めることもできる。

#foreach ($color in ["red","green","blue",$usercolor,"white"])