fork(8) download
  1. s = "Young Adult – 8-9\""
  2. s
  3. gsub("\"", "", s)
  4. gsub('"', "", s)
  5. gsub('"', "", s, fixed=TRUE)
Success #stdin #stdout 0.19s 183680KB
stdin
Standard input is empty
stdout
[1] "Young Adult – 8-9\""
[1] "Young Adult – 8-9"
[1] "Young Adult – 8-9"
[1] "Young Adult – 8-9"