Pad integers with leading zeros (template filter)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
@register.filter
def leading_zeros(value, desired_digits):
  """
  Given an integer, returns a string representation, padded with [desired_digits] zeros.
  """
  num_zeros = int(desired_digits) - len(str(value))
  padded_value = []
  while num_zeros >= 1:
    padded_value.append("0") 
    num_zeros = num_zeros - 1
  padded_value.append(str(value))
  return "".join(padded_value)

Comments

kioopi (on January 11, 2008):

hey, doesn't

def leading_zeros(value, desired_digits):
    return str(value).zfill(desired_digits)

do the same thing?

#

jcroft (on January 11, 2008):

Probably. And I've also been informed that you can use the string formatting built-in template tag to accomplish this:

{{ var_containing_number|stringformat:"05d" }}

So, yeah -- good idea, but maybe not the best way to do it. I sort of suspected there was probably a better way. :)

#

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.