From: Steven Ketcham Date: 2006-09-30T05:02:42+09:00 Subject: string indexing/setting ------=_NextPart_000_0080_01C6E3E0.AFCAC9C0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I think I found a version difference between 1.82 and 1.84-20 Stable and I wanted to know what correct code was and what was not. pos = s.index("11") s = "000011481^3" s[2..pos] = "BigString" puts s On one server I have 1.82 and it generates "00BigString1481^3" on another with 1.84-20 it generates "00BigString". However, on a third server I have a 1.84 version that puts out a similar version as the 1.82. These are all Windows machines. What should I be expecting? Thanks! ------=_NextPart_000_0080_01C6E3E0.AFCAC9C0--