-
How to know the number of characters per lines?
Hello,
Is it possible to know how much characters there are per lines in a text?
I can know the number of lines with this :
“nb of lines = “+thisComp.layer(“TextBase”).text.sourceText.value.split(/\n|\r/).lengthI can know the number of words with this :
“nb of words = “+thisComp.layer(“TextBase”).text.sourceText.lengthBut how to know the number of characters per lines???
Thank you!