Looplex Knowledge Base

IndexOf

Retorna o índice de uma substring contida em outra. Caso não encontre tal substring, retorna -1

Formato:

indexOf(text, subs)
<text>.indexOf(subs)

Parâmetros:

  • text: String a ser extraída a pesquisada
  • subs: String a ser buscada

Retorno:

Índice da substring

Exemplo:

indexOf("0123456789", "123") # retorna 1
indexOf("0123456789", "124") # retorna -1
Edit this page on GitHub