How to remove part of a string

Hey guys i want to remove everything that is in parenthesis in the image below. How would i do that??

hi @ZJRODGERS,
in this case in particular you could split the string by “(” and take the first part of the result.
Removing everything between parenthesis in a string is totally possible but a little more complicated.

Hi,

String.Remove node is the faster solution but String.Split works also.

3 Likes

If you have something else after the part you want to remove, then maybe something like this:

4 Likes