Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is how I am getting the total number of lines in ACE editor...

editor.getSession().on('change', function(){
    var lines = editor.session.getLength();
    $('#lines').empty().append(lines);
});

This works fine, but how can I get the total characters also? I can't find any information on this in the API documentation.

Thanks.

EDIT...

This is how I ended up doing this... it also divides the output with a thousands separator.

var lines = setting.editor.getLength().toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
var chars = setting.editor.getValue().length.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
$('#lines').empty().append(lines);
$('#chars').empty().append(chars);
share|improve this question

1 Answer

up vote 2 down vote accepted

Try to use this:

console.log(editor.session.getValue().length);
share|improve this answer
You beat me to it, +1. – Cerbrus Dec 19 '12 at 10:33

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.