From: Logan Capaldo Date: 2007-04-30T05:18:45+09:00 Subject: Re: Infix to Postfix Method ------=_Part_75691_27149524.1177877923109 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 4/28/07, Paul Brannan wrote: > > > (I feel like there should be a better way to do this, but I haven't > found one. Pity there's no String#each_char). There is a String#each_char, but it's spelled a little funny ;) : "abc".scan(/./m) do |char| p char end Paul > > > ------=_Part_75691_27149524.1177877923109--