From: Jay Date: 2006-11-08T02:15:09+09:00 Subject: Re: Concat is driving me crazy I found the answer: I'm a moron. Please disregard. On Nov 7, 11:54 am, "Jay" wrote: > This is driving me crazy. For some reason > > product.title = "this is" > item.title = product.title.to_s << ' my string' > > yields "this is my string" > > but > > product.title = "this is" > item.title = 'my string ' << product.title.to_s > > will only yield "this is" without adding 'my string ' at the beginning. > I feel like there must be something incredibly simple I'm missing. > Advice would be much appreciated.