fork download
  1. j <- "Abc,Abc, and c"
  2. gsub("\\b,\\b", " ", j)
Success #stdin #stdout 0.16s 175680KB
stdin
Standard input is empty
stdout
[1] "Abc Abc, and c"