fork download
  1. input <- "this is my 'example'"
  2. change <- "test"
  3.  
  4. stringr::str_replace(input, "(?<=').*?(?=')", change)
Success #stdin #stdout 0.29s 42584KB
stdin
Standard input is empty
stdout
[1] "this is my 'test'"