fork download
  1. str = "Hello everybody, my name is alex"
  2. str = str.split(", ")
  3. str = str[0] + " (" + str[1].split.map(&:capitalize).join(" ") + ")"
  4. puts str
Success #stdin #stdout 0s 28216KB
stdin
Standard input is empty
stdout
Hello everybody (My Name Is Alex)