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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top