Truncate first 3 letters or first word from a text property.

HI,

I Have a text property which holds sentence i wan to remove first 3 letters from the sentence or the first word from sentence.

Example: .Reason = “The Book”

I want to remove The from the property.

Please let me know if you have idea.

Thanks,

@Yasvanth Tanuku

If you want to remove the first word of a sentence, you can set the property value in a param with whatComesAfterFirst(,’ ') and on the next step add this param back to the property.

If you want to remove the first 3 letters, you can set the property value in a param with substring(,4) and on the next step add this param back to the property.