I am struggling with another regex expression. I have:
test <- "some.a, stuff.b, is.c, here.d, e, f, goaway.g" "some.a, stuff.b, is.c, here.d, e, f, goaway.g"
I want to:
gsub("??", "", test) "a, b, c, d, e, f, g"
I canβt figure out what to put for my template. I tried something like "*\\.?" and it didnβt work. I'm not familiar enough with regex to know what I'm doing.
source share