xxxxxxxxxx
def count_word_characters(text):
count = 0
for char in text:
if char.isalnum():
count += 1
return count
# Example usage
sentence = "Hello, how are you today?"
result = count_word_characters(sentence)
print(result) # Output: 19