Telegram Text Limit

Hello there,
I would like to send a text message through Telegram.
Telegram’s text limit is too short for my text.
What is the right way to slice my text into separate parts to fit the Telegram text limit?

Hi @asaf

there are probably more ways to solve this. I would start with these functions:

length() to count the number of characters
https://www.make.com/en/help/functions/string-functions#length--text-or-buffer-

substring() to get specific parts of the string
https://www.make.com/en/help/functions/string-functions#substring--text--start--end-

Cheers,
Gijs

1 Like