fork download
x <- "They didn't sell the company, and it went bankrupt"
gsub("(?:\\bnot|n't|\\G(?!\\A))\\s+\\K(\\w+)\\b", "not_\\1", x, perl=TRUE)
Success #stdin #stdout 0.2s 39448KB
stdin
Standard input is empty
stdout
[1] "They didn't not_sell not_the not_company, and it went bankrupt"