How to count the number of words in a text?

HELLO,

Is it possible to count the number of words in a text?

Thank you for your answers

Hello there @Quentin_B :wave: Great question!

To figure out how many words are in your text, you can use the split function to break it up into little word nuggets.

Subsequently, you can then count how many of those little nuggets you’ve got using the (array) length function.





2 Likes

you are wonderful, thank you