pystr_index: Find the lowest index of a substring.

Description Usage Arguments Value References See Also Examples

View source: R/pystr_index.R

Description

Like pystr_find but raises an error if sub is not found.

Usage

1

Arguments

str

A character vector.

sub

A character vector.

start

A numeric vector.

end

A numeric vector.

Value

A numeric vector.

References

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

See Also

pystr_rindex

Examples

1
2
3
4
5
6
pystr_index("abcxyzabc", "abc")
pystr_index("abcxyzabc", "abc", 4)
## Not run: 
pystr_index("abcxyzabc", "123")

## End(Not run)

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