fork download
  1. string <- ' " "KPNA2" "UBE2C" "CENPF" ## [4] "HMGB2"'
  2. regmatches(string, gregexpr('(?<=")\\w+(?=")', string, perl=TRUE))[[1]]
  3. ## => [1] "KPNA2" "UBE2C" "CENPF" "HMGB2"
Success #stdin #stdout 0.25s 39716KB
stdin
Standard input is empty
stdout
[1] "KPNA2" "UBE2C" "CENPF" "HMGB2"