From: Chris Date: 2002-04-11T06:54:34+09:00 Subject: Re: delete a sequence of chars In article , David Alan Black wrote: > > > > 'http://www.hotpita.net'[7..1000] > > > > > > Or how about > > > 'http://www.hotpita.net'[7..-1] > > > > Ok, I think I'm going to go bang my forehead on the desk for a few hours > > for forgetting that. :-) > > No, just bang your head [7..-1] times :-) Actually, this conversation does raise a question... 'http://www.hotpita.net'[7..1000] I've always assumed the [] operator for strings short-circuits after it hits the first index that's out of range, but I've never actually looked into whether or not this is the case. Anyone care to shed some light on this?