From: ts Date: 2003-08-27T00:40:01+09:00 Subject: Re: Specification of Ruby regex? >>>>> "M" == Mark Slagell writes: M> um, no, I wrote what I meant, but is something wrong with to_a there? it add $& svg% ruby -e 'p /.(.)/.match("ab").to_a' ["ab", "b"] svg% svg% ruby -e 'p /.(.)/.match("ab").captures' ["b"] svg% Guy Decoux