Functionsยง
- get_
all_ after - get_
all_ after_ strict - Return the part of a str which is after an occurence or return None if there is no occurence.
- get_
all_ before - get_
all_ before_ strict - Return the part of a str which is before an occurence or return None if there is no occurence.
- get_
all_ between - get_
all_ between_ strict - Return the part of a str which is between two str or return None if this is not possible.
- get_
idx_ after_ strict - Return the index of the end of an occurence. Return None if there is no occurence.
- get_
idx_ before - Return the index of an occurence. If there is no occurence, the index is the len of the text.
- get_
idx_ before_ strict - Alias for the str find method.
- get_
idx_ between_ strict