vote up 4 vote down star
1

Lets Say we have Zaptoit:685158:zaptoit@hotmail.com

How do you split so it only be left 685158:zaptoit@hotmail.com

flag

4 Answers

vote up 6 vote down
>>> s = 'Zaptoit:685158:zaptoit@hotmail.com'
>>> s.split( ':', 1 )[1]
'685158:zaptoit@hotmail.com'
link|flag
Note that it's not really good practice to use the variable name "str" since str() is a builtin. – Jay Jan 12 at 22:31
Thanks Jay - I've updated the code. – Graeme Perrow Jan 13 at 14:52
vote up 3 vote down

Another method, without using split:

s = 'Zaptoit:685158:zaptoit@hotmail.com'
s[s.find(':')+1:]

Ex:

>>> s = 'Zaptoit:685158:zaptoit@hotmail.com'
>>> s[s.find(':')+1:]
'685158:zaptoit@hotmail.com'
link|flag
+1. I needed to be reminded of this. – PEZ Jan 12 at 20:04
vote up 2 vote down

Another solution:

s = 'Zaptoit:685158:zaptoit@hotmail.com'
s.split(':', 1)[1]
link|flag
vote up 0 vote down
s = re.sub('^.*?:', '', s)
link|flag
^[^:]*: would be better – ʞɔıu Jan 12 at 20:02
@PEZ: better being stopping the match on the first ':' instead of the last one – orip Jan 12 at 23:22
@orip: I think you are mistaken -- the question mark makes it a non-greedy match that will stop at the first colon, as intended – scrible Jan 13 at 4:12
Yeah, I think Nick means something else. – PEZ Jan 13 at 12:46
It doesn't matter in this case, but in general, if you have choice between a negated character class and a reluctant quantifier (eg, '.*?'), the char class tends to be faster, less memory-intensive, and most importantly, more predictable. – Alan Moore Jan 13 at 15:46
show 1 more comment

Your Answer

Get an OpenID
or

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