Lets Say we have Zaptoit:685158:zaptoit@hotmail.com
How do you split so it only be left 685158:zaptoit@hotmail.com
|
|
|
|||||||
|
|
Another method, without using split:
Ex:
|
|||
|
|
|
As of Python 2.5 there is an even more direct solution. It degrades nicely if the separator is not found:
|
|||
|
|
|
|||||||||||||
|
|
Use the method str.split() with the value of maxsplit argument as 1.
Hope it helped. |
|||
|
|