fork(1) download
  1. x <- c("Prayer: Lord. Have mercy on.")
  2. gsub("^[^:]*:\\s*([^.]+).*","\\1",x)
  3. gsub("^[^:]*:\\s*[^.]+\\.\\s*([^.]+).*","\\1",x)
Success #stdin #stdout 0.25s 38756KB
stdin
Standard input is empty
stdout
[1] "Lord"
[1] "Have mercy on"