pystr_find: Find the lowest index of a substring.

Description Usage Arguments Value References See Also Examples

View source: R/pystr_find.R

Description

Return the lowest 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.find

See Also

pystr_rfind

Examples

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

nicolewhite/pystr documentation built on May 23, 2019, 5:09 p.m.