In a column like this:
data.frame(id = c(1), text = c("keep<U+0E1E>it"))
is there any way to use a gsub in column text to remove character which are inside this <> and remove also this <>
Expected output data.frame(id = c(1), text = c("keep it"))