fork download
  1. text <- "This is some text::stuff. Look, there's some::more. And here::is some more."
  2. m <- gregexpr("[[:alnum:]]+(?=::)", text, perl=TRUE)
  3. unlist(regmatches(text, m))
Success #stdin #stdout 0.27s 39444KB
stdin
Standard input is empty
stdout
[1] "text" "some" "here"