------ art_5331_11499180.1205717588747 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline input abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ !@#$%^&*()_+- |[]\;\':",./<>?`~' input.tr! "A-Za-z", "N-ZA-Mn-za-m" "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM !@\#$%^&*()_+- |[]\\;':\",./<>?`~" On Mon, Mar 17, 2008 at 11:16 AM, Thomas Wieczorek <wieczo.yo / googlemail.com> wrote: > On Mon, Mar 17, 2008 at 1:50 AM, Max Zhou <ball908765 / yahoo.com> wrote: > > I am trying to make a program that takes what you input, and encrypts it > by turning a to p, b to q, z to b, etc. It moves the letter 2 spaces to the > left (a to c) and moves it down (c to p). (See below.) Even though you can > just say that a will be n, how do you seperate each letter and turn it into > a string? Please put it in terms that a Ruby beginner would understand. > > abcdefghijklm > > nopqrstuvwxyz > > > > You can split a string with the String#split method: > irb > > "Foobar".split(//) >