From: Tom Reilly Date: 2011-07-25T23:04:25+09:00 Subject: Re: Very Very simple problem amir e. wrote: > Hi > I have a string like "12345678". I want to remove first character. > How can I do this? > Try this: a = "012345678" b = a[1..-1] p b