From: James Edward Gray II Date: 2006-04-24T04:23:36+09:00 Subject: Re: [SOLUTION] Quiz #76 On Apr 23, 2006, at 8:49 AM, Jesse H-K wrote: > I sincerely hope I am doing this correctly, as... > > (1) I have never posted to a mailing list. > (2) I have never participated in Ruby Quiz > (3) I really hope I am posting at the right time, place, etc > > I apologise if I did this incorrectly. Looks perfect to me. > I don't have any formal education with programming, but this was an > easier challenge, so I thought I'd try my hand at it. You did a nice job. Thanks for sending it in! > Since nothing in the String could be affected besides words, I > figured I > would use the built in String#gsub . I simply find each word using the > regex /\w+/ (which will find 1 or more letters) And numbers and _s. ;) \w is equivalent to [A-Za-z0-9_], just FYI. James Edward Gray II