On Nov 30, 2006, at 1:13 PM, dblack / wobblini.net wrote: > You can also do: > > word.split(//).each {|char| puts char } Or without the Array: word.scan(/./m) { |char| ... } Or you can load the each_char() method from the standard library: require "jcode" word.each_char { |char| ... } James Edward Gray II