I am trying to find some examples but no luck. Anyone knows some examples on the net? I want to know what it returns when it can't find, and how to specify from start to end, which I guess is gonna be 0, -1.
|
|
you can use
|
|||||||||||||||||||
|
|
I'm not sure what you're looking for, do you mean
|
|||||||||||||||
|
|
From here: str.find(sub[, start[, end]]) So, some examples:
|
|||||
|
|
Honestly, this is the sort of situation where I just open up Python on the command line and start messing around:
Python's interpreter makes this sort of experimentation easy. (Same goes for other languages with a similar interpreter) |
|||
|
|
|
If you want to search for the last instance of a string in a text, you can run rfind. Example:
output: 3 *no import needed Complete syntax:
|
|||
|
|
|
Return the lowest index in the string where substring sub is found, such that sub is contained in the range [start, end]. Optional arguments start and end are interpreted as in slice notation. Return -1 if sub is not found. From the docs. |
|||
|
|
