Re: string methods
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.python archive

Re: string methods

From: Brian Beck <exogen@gmail.com>
Date: Sat Jul 30 2005 - 18:31:49 CEST

anthonyberet wrote:
> I know this touches on immutability etc, but I can't find string methods
> to return the first 3 characters, and then the last 2 characters, which
> I could concatenate with newchar to make a new string.

As tiissa said, you want slicing:

py> s = "foobar"
py> s[:3]
'foo'
py> s[:3] + "B" + s[4:]
'fooBar'
py>

-- 
Brian Beck
Adventurer of the First Order
Received on Thu Sep 29 17:15:49 2005