From: William James Date: 2007-04-27T16:55:04+09:00 Subject: Re: string replacement... On Apr 27, 2:29 am, Josselin wrote: > I have a string : str = "/proposal/list/31551" > > I would like to change the 31551 by another value "9999", but I don't > see whicj method I should use ? > > str.each and block ? or str.rindex('/') and concatenating the new value ? > > tfyh > > joss str[/\d+/] = "9999"