fork(1) download
  1. X <- "I'm not that good at regex yet, but am getting better!"
  2. strsplit(X, "[[:space:]]|(?=(?![',])[[:punct:]])", perl=TRUE)
Success #stdin #stdout 0.22s 39252KB
stdin
Standard input is empty
stdout
[[1]]
 [1] "I'm"     "not"     "that"    "good"    "at"      "regex"   "yet,"   
 [8] "but"     "am"      "getting" "better"  "!"