pystr_rfind: Find the highest index of a substring.

Description Usage Arguments Value References See Also Examples

Description

Return the higest index in the string where substring sub is found, such that sub is contained in the slice substr(str, start, end).

Usage

1

Arguments

str

A character vector.

sub

A character vector.

start

A numeric vector.

end

A numeric vector.

Value

A numeric vector. -1 indicates sub was not found.

References

https://docs.python.org/3/library/stdtypes.html#str.rfind

See Also

pystr_find

Examples

1
2
3
pystr_rfind("abcdxyzabc", "abc")
pystr_rfind("abc", "xy")
pystr_rfind("abcxyzabc", "abc", 4)

pystr documentation built on April 15, 2017, 12:30 a.m.

Related to pystr_rfind in pystr...