Truncated from without end to

Hey everyone!

Can anyone tell me how to cut off the first 1000 characters from a string? “truncated from end to” doesn’t work for me, because the string length can vary, but the beginning part that I want to remove is roughly the same.

A) maybe you can use find and replace, find the first part and replace by nothing?
B) You can do a characters count and cut using this count (string:truncated from end to (string characters count -1000)

1 Like

Wow! That’s really interesting. Thanks. I’ll try it today and let you know how it turns out.

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.