fork(1) download
  1. b <- c("Average 18.24", "Error 23.34")
  2. sub("^[A-Za-z]+[[:space:]]+", "", b)
  3. sub("^\\S+\\s+", "", b)
Success #stdin #stdout 0.47s 79168KB
stdin
Standard input is empty
stdout
[1] "18.24" "23.34"
[1] "18.24" "23.34"