I have a string field (255 chars) that may cut off words.
“…Hello World, thank you for joi”
I am trying to find the last occurrence of ‘space’ and append ‘…’ to remove incomplete words.
So output would return,
“…Hello World, thank you for…”
Tried using substring(), but hard time getting the last position of ‘space’
{{substring(text; 0; indexOf(LAST_POS_OF_SPACE))}}
Any suggestions?