From: 7stud -- Date: 2009-07-20T12:15:57+09:00 Subject: Re: How to strip inner whitespace in rails Thriving K. wrote: > I want to strip any whitespace that more than 1 to be 1 > > For example "A B C" ===> "A B C" > > "Very Important" ===> "Very Important" split() rules the world. squeez()...not so much. s.split().join(" ") -- Posted via http://www.ruby-forum.com/.