fork download
  1. x <- c("On the Internet, nobody knows I'm a dog", "On the Internet, '''nobody''' knows I''m a ''''dog''''")
  2. gsub("''(*SKIP)(?!)|'", "''", x, perl=TRUE)
Success #stdin #stdout 0.23s 60752KB
stdin
Standard input is empty
stdout
[1] "On the Internet, nobody knows I''m a dog"                
[2] "On the Internet, ''''nobody'''' knows I''m a ''''dog''''"