fork download
  1. a <- "I hate extra spaces elephant"
  2. gsub("(?:\\G(?!^)|(?<!\\S)\\S{5})\\K\\S", ".", a, perl = TRUE)
Success #stdin #stdout 0.28s 39276KB
stdin
Standard input is empty
stdout
[1] "I hate extra space. eleph..."