From: Todd Benson Date: 2007-06-04T00:07:54+09:00 Subject: Re: Looking for an array method On 6/3/07, Sun Park wrote: > Sorry, what I meant was : > > a = "abc" > => "abc" > a (some method with arguments of 1 and "d") > => "adc" > > I wanted to find out are there any methods behaving like this. None directly that I know of, but ... a = "abc a.split('').fill("d",1,1).join or (a[1]='d';a)