I try to count characters in result of textarea. It can contains many lines.
text = '''1 2 3''' if I use len(text) the result is 7, because it counts each newline as two characters (which is quite possible CR+LF are two characters). But I want to count it as one character - is there any method or I have to count newlines and substract it?
\r\nwith\nmight simplify it and make it more cross platform.