From: "Iñaki Baz Castillo" Date: 2008-04-04T23:56:09+09:00 Subject: Re: How to split a String into characters? 2008/4/4, Iñaki Baz Castillo : > Hi, I suppose this is a very easy question but I don't find how to do: > > I hace a String: > "abcde" > and need each character in an Array: > ['a', 'b', 'c', 'd', 'e'] > > There seems not to be a Sting method for that, is there any "easy" way? Opss, sorry, it's so easy... "abcde".split("") => ['a', 'b', 'c', 'd', 'e'] :) -- Iñaki Baz Castillo