Since 5/8/2012 1:52:17 PM, moises.trovo has written 0 articles and participated in 6 conversations. moises.trovo signature: moises.trovo
moises.trovo's replies:
Items(6) /1
Learn to Program, by Chris Pine6445 (3/29/2006 9:32:43 PM) comp.lang.ruby Does anyone know where I can find the solutions to the exercises in this book: http://pine.fm/LearnToProgram/ I'm stuck in "Flow Control" chapter, specificailly the "Extend Deaf Grandma" exercise. I feel li... non1648(22)
regular expression #31343 (1/14/2008 1:07:33 PM) comp.lang.ruby hey im lookiing to be able to write a regular expressions which deals with 10 letter strings which end in either "ed" or "ing" any help would be much appreciated thanks -- Posted via http://www.ruby-forum.c... stu_09(35)
regular expression #41038 (1/16/2008 3:57:59 PM) comp.lang.ruby hi there i wanting to write a regular expression which matches words which contain the vowels [aeiou] in alphabetical order im not sure where to start so any help would be greatly appreciated thans -- Poste... stu_09(35)
IE219 (1/31/2008 5:34:33 PM) comp.lang.ruby [Note: parts of this message were removed to make it a legal post.] Hi everybody!, i want to know if it's possible to get the state icon in the button left of the Internet Explorer, like "Error on Page" or "D... aart85(6)
shorter form of concat946 (2/4/2008 1:26:25 AM) comp.lang.ruby the following line will concat "1" all the way to "10"... but is there a shorter way... like x . y or must it be this long? p (1..10).inject{|x,y| x.to_s + y.to_s} also... x.to_s + y won't cause y to conve... Summercoolness(256)