Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to substring a string in Python, to get a new string from the 3rd character to the end of the string?

Maybe like myString[2:end]?

EDIT: If leaving the second part means 'till the end', if you leave the first part, does it start from the start?

share|improve this question
17  
Five correct answers with 60 seconds of post time, this is a pretty good example of how SO continues to blow my mind. – bouvard Mar 19 '09 at 17:32
Yes I really like this site. – Joan Venge Mar 19 '09 at 17:32
1  
Answer to your edit... yes it does. myString[:2] means from the start. – Jarret Hardie Mar 19 '09 at 17:37
8  
@bouvard Or maybe they could have just searched the web for 'python substring' which finds 6 results that answer the question fully and date to pre-2009 (including docs.python.org which should be first port of call anyway). – danio Jan 13 '12 at 9:30
1  
I wonder, when people will start reading the docs, or at least tutorials? Dammit, the slice notation is very well explained in docs.python.org/tutorial/introduction.html#strings – BasicWolf Aug 4 '12 at 11:45
show 3 more comments

11 Answers

up vote 326 down vote accepted
>>> x = "Hello World!"
>>> x[2:]
'llo World!'
>>> x[:2]
'He'
>>> x[:-2]
'Hello Worl'
>>> x[-2:]
'd!'
>>> x[2:-2]
'llo Worl'

Python calls this concept "slicing" and it works on more than just strings. Take a look here for a comprehensive introduction.

share|improve this answer
6  
oo, I was about to add more examples, but I see it was done for me. Thank you kind sir. – Paolo Bergantino Mar 19 '09 at 17:42

Besides the direct answer that others have given, you can find all the other rules for slicing behavior explained in the Strings section of the official tutorial.

share|improve this answer
+1: for having a link to more information :-) – tgray Mar 19 '09 at 17:59

A common way to achieve this is by String slicing. MyString[a:b] gives you a substring from index a to b

share|improve this answer

Just for completeness as nobody else has mentioned it. The third parameter to an array slice is a step. So reversing a string is as simple as:

some_string[::-1]
share|improve this answer
@mtahmed absolutely related to question. What if you wanted to substring by selecting alternate characters from the string? That would be my_string[::2] – Endophage Feb 12 at 17:59

Yes there is. Your example is very close:

myString[2:]
share|improve this answer

One example seems to be missing here: full (shallow) copy.

>>> x = "Hello World!"
>>> x
'Hello World!'
>>> x[:]
'Hello World!'
>>> x==x[:]
True
>>>

This is a common idiom for creating a copy of sequence types (not of interned strings). [:] Shallow copies a list, See python-list-slice-used-for-no-obvious-reason.

share|improve this answer
Does this create a new copy? – Joan Venge Mar 19 '09 at 18:37
A new copy will be created for lists - see edited answer. – gimel Mar 19 '09 at 19:50

Substr() normally (i.e. PHP, Perl) works this way:

s = Substr(s, beginning, LENGTH)

So the parameters are beginning and LENGTH

But Python's behaviour is different, it expects beginning and END (!). This is difficult to spot by beginners. So the correct replacement for Substr(s, beginning, LENGTH) is

s = s[ beginning : beginning + LENGTH]
share|improve this answer

myString[2:] .. leave off the second index to go to the end

share|improve this answer

mystring[2:]

share|improve this answer

You've got it right there except for "end". Its called slice notation. Your example should read.

new_sub_string = myString[2:]

If you leave out the second param it is implicitly the end of the string.

share|improve this answer

here is some method to do sub string.using slicing and dicing.

>>> a = "Hello World"
>>> a[1:]
'ello World'
>>> a[2:]
'llo World'
>>> a[:1]
'H'
>>> a[:2]
'He'
>>> a[-1:]
'd'
>>> a[-2:]
'ld'
>>> a[:-1]
'Hello Worl'
>>> a[:-2]
'Hello Wor'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.