Question

I have a list of strings in the format: 'foo7bar'. How is it possible in Python to remove the 7 along with any characters that follow?

This is similar to this question, but I need the answer for Python.

Was it helpful?

Solution

You can do this using Python's slice notation:

>>> mystr = 'foo7bar'
>>> mystr[:mystr.index('7')]
'foo'
>>>

The format for slice notation is [start:stop:step]. The index method of a string finds the position of the first occurrence of its input.

Note however that if you are dealing with something more complex (such as matching patterns), you might want to look into Regular Expressions. For this operation though, the slice notation is sufficient.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top