Name

commify — add thousands separator to a number, and trim to specified number of decimal places

DESCRIPTION

The filter adds thousands separator (a comma ",", usually) to a number, and trims decimal places to a specified maximum length.

EXAMPLES

Example: Filter example

[set online_commify_test]1234567890.123456[/set]
[filter op=commify.2 interpolate=1][scratchd online_commify_test][/filter]

          

NOTES

AVAILABILITY

commify is available in Interchange versions:

5.4.0-5.7.0 (cvs-head)

SOURCE

Interchange 5.7.0:

Source: code/Filter/commify.filter
Lines: 20


# Copyright 2002-2007 Interchange Development Group and others
# Copyright 1996-2002 Red Hat, Inc.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.  See the LICENSE file for details.
# 
# $Id: commify.filter,v 1.4 2007/03/30 23:40:44 pajamian Exp $

CodeDef commify Filter
CodeDef commify Description Commify
CodeDef commify Routine <<EOR
sub {
my ($val, $tag, $places) = @_;
$places = 2 unless defined $places;
$val = sprintf("%.${places}f", $val) if $places;
return Vend::Util::commify($val);
}
EOR

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!