Logo

Programming-Idioms

  • Fortran
  • Python

Idiom #341 Find substring last position

Set i to the position of the last occurrence of the string y inside the string x, if exists.

Specify if i should be regarded as a character index or as a byte index.

Explain the behavior when y is not contained in x.

i = x.rfind(y)

i contains the character index or -1, if the substring is not found.
import "strings"
i := strings.LastIndex(x, y)

i is the byte index of y in x, not the character (rune) index.

i will be -1 if y is not found in x.

New implementation...
< >
programming-idioms.org