I have the following string which I would like to remove the parentheses and the text within from. I do not understand regex so is there another method to remove it. I want to use R to do this
Code:
Objects <- "Wood (Brown), leaves (Green), Sky (Blue)"
End Result:
Objects <- "Wood, leaves, Sky"