Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that with a regular string you can do x.len() to get the length of it, but a Django model TextField doesn't seem to want that. I have found and looked at the model field reference. How do I get the length of a text field in Django? Help and examples appreciated.

share|improve this question
1  
I think this belongs to SO – yati sagade Aug 13 '12 at 15:12
3  
Strings don't have a len method in python, you call the len builtin (which objects can provide by implementing __len__) – Daenyth Aug 13 '12 at 15:15
1  
I just verified, though, we can call len() on a TextField which is exposed as a string to the programmer. – yati sagade Aug 13 '12 at 15:23

migrated from programmers.stackexchange.com Aug 13 '12 at 15:33

2 Answers

up vote 2 down vote accepted

Try len(obj.your_field). This should give you what you want because the result it going to be a an object of the corresponding data type (both TextField fields and CharField fields will be strings). Here is a quick example based on the docs:

from django.db import models

class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)

 person = Person.objects.get(pk=1)

 len(person.first_name)

Also, there is no 'string'.len() method in python unless you have added it somehow.

share|improve this answer
This worked a charm. Thank you. – Ross Walker Aug 20 '12 at 11:02

Django model instances don't actually expose the fields as field classes: once loaded from the database, they are simply instances of the relevant data types. Both CharField and TextField are therefore accessed as simple strings. This means that, as with any other Python string, you can call len(x) on them - note, this is a built-in function, not a string method. So len(myinstance.mytextfield) and len(myinstance.mycharfield) will work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.