From: Jody Glidden Date: 2008-09-22T06:02:57+09:00 Subject: Iterating through a string If I try the following... "I love guitar playing".split {|s| s.capitalize}.join(" ") I would expect it to capitalize the first letter of each word but it doesn't seem to work. Any hints on what I'm doing incorrectly? -- Posted via http://www.ruby-forum.com/.