How do you count the length of a string (example “Hello, Mr. John. Have a good day.” taking out the commas, periods and white spaces?
JavaScript
x
3
1
string = "Hello, Mr. John. Have a good day."
2
print(len(string))
3
The count should be 23. I’m coming up with 33 with the commas, periods and white spaces.
Advertisement
Answer
The @yixizhou answer is simple and accurately a good one but if you want to avoid the other thing you can use regular expression for correct length like this
JavaScript
1
4
1
import re
2
string = "Hello, Mr. John. Have a good day."
3
print(len("".join(re.findall(r'[A-Z0-9a-z]', string))) )
4