格式化和分组浮点数

Formatting and groupping float numbers

在 Perl Catalyst 应用程序中,使用 Template-Toolkit,我使用以下格式打印浮点数列表:

<h4>[% price | format('%9.2f') %]</h4>

什么格式的数字正确(例如 2113.99)但是,我想使用像 2 113.99 这样的数字分组。我读了 Template::Plugin::Number::Format 但没有关于数字分组的消息。如何实现这一点?

从文档的最顶部开始 link 您提供了:

Constructor Parameters

The USE line accepts the following parameters, all optional, which define the default behavior for filters within the current Context:

THOUSANDS_SEP

character inserted between groups of 3 digits

......