I Heart Strings

I used to like String.Format before I discovered Ruby. The {n} thing is OK until n becomes a reasonably large number (5+/-2). Then it becomes a lot harder to read.

String.Format(“My name is {0} {1} and I’m a {2}”, firstName, lastName, citizenship)

vs.

“My name is #{first_name} #{last_name} and I’m a #{citizenship}”