Hi guys, Pretty new to Python so be nice please!
I have a string of text-how do I remove all the text after some certain characters? The text after will change so I want to remove after some text which doesn't change.
Hope that makes sense!
Thanks
|
|
Hi guys, Pretty new to Python so be nice please! I have a string of text-how do I remove all the text after some certain characters? The text after will change so I want to remove after some text which doesn't change. Hope that makes sense! Thanks
|
||||
|
|
|
Split on your separator at most once, and take the first piece:
You didn't say what should happen if the separator isn't present. Both this and Alex's solution will return the entire string in that case. |
||||
|
|
|
Assuming your separator is '...', but it can be any string.
If the separator is not found, The partition function was added in Python 2.5.
|
||||||||||||
|
|
|
Without a RE (which I assume is what you want):
or, with a RE:
|
||||||
|