Hi Team,
I would like to remove total words from a sentence, Below is the sentence
Are the machines property stickered(external communication)
I need to remove(external communication) from the above one, Strip with or clean with cant be used because it will remove other letters also
Any suggestions ?
Thanks
Discussion posts and replies are publicly visible
joinarray(split(ri!texttoclean,"(external communication)"))
This will find the given string anywhere in the text and remove it, not just at the end. The other answer would break if the desired text also has a parenthesis in it