Does anyone know of a less painful way of counting the characters in a text field?

hi

found this painful-looking forum answer from 2018 and am wondering whether there’s now an easier way?

many thanks

I don’t believe so. This is a fring case, and regex is still the best solution for it.

Hi @kunigunda,

For your use case, you might want to try some available plugins.

Here’s a free plugin that could be helpful:
:slightly_smiling_face: The Countable Plugin

Feel free to explore the live demo page and review the documentation to ensure smooth integration.

Let us know if this helps! :pray:

Best regards,

Support Team
Browse all Zeroqode Plugins for Bubble
Banner_Last3

thanks but am looking for a non-plugin alternative

1 Like

I’m not sure wha’s ‘painful’ about that… it’s actually very simple…

Just use [A-Z] to extract the uppercase characters and [a-z] to extract the lowercase characters.

Simple, and works perfectly.

is this not possible for your use case?

1 Like

nice one, thanks! (my search for ‘character count’ in the manual was a dead end)

am a bit allergic to regex, so was hoping for a non-gobblygoop solution and this did the trick, so thanks again : )

regex is simple/perfect for those who have been there/done that but i can -thankfully- put off learning to use regex for another day : )

But there’s no other way to do it… (you can’t do this without regex)