1I want to do a strsplit on one variable ID1 to split into ID1_s1 and ID1_s2 and I need to get rid of the strings that are in brackets.
# dummy data
df1 <- data.frame(ID1=c("Gindalinc","Xaviertechnolgies","anine.inc(Nasq)","Xyzinc"), y=1:4)
strsplit(df1$ID1, "\\(")
How can i do a strplit to separate the ID1 based into ID1_s1 and ID_s2 "(" brackets?
I need output as follows:
ID1_s1 ID1_s2 y
Gindalinc 1
Xaviertechnolgies 2
anine.inc (Nasq) 3
Xyzinc 4