logo

String Java indexOf()

O Classe Java String indexOf() O método retorna a posição da primeira ocorrência do caractere ou string especificado em uma string especificada.

Assinatura

Existem quatro métodos indexOf() sobrecarregados em Java. A assinatura dos métodos indexOf() é fornecida abaixo:

Não.MétodoDescrição
1int indexOf(int ch)Ele retorna a posição do índice para o valor char fornecido
2int indexOf(int ch, int fromIndex)Ele retorna a posição do índice para o valor char fornecido e do índice
3int indexOf(String substring)Ele retorna a posição do índice para a substring fornecida
4int indexOf(String substring, int fromIndex)Ele retorna a posição do índice para a substring fornecida e do índice

Parâmetros

CH : É um valor de caractere, por ex. 'a'

do índice : a posição do índice de onde o índice do valor char ou substring é retornado.

substring : uma substring a ser pesquisada nesta string.

Devoluções

Índice da string ou caractere pesquisado.

Implementação Interna

 public int indexOf(int ch) { return indexOf(ch, 0); } 

Exemplo de método Java String indexOf()

Nome do arquivo: IndexOfExample.java

 public class IndexOfExample{ public static void main(String args[]){ String s1='this is index of example'; //passing substring int index1=s1.indexOf('is');//returns the index of is substring int index2=s1.indexOf('index');//returns the index of index substring System.out.println(index1+' '+index2);//2 8 //passing substring with from index int index3=s1.indexOf('is',4);//returns the index of is substring after 4th index System.out.println(index3);//5 i.e. the index of another is //passing char value int index4=s1.indexOf('s');//returns the index of s char value System.out.println(index4);//3 }} 
Teste agora

Saída:

 2 8 5 3 

Observamos que quando uma string ou caractere pesquisado é encontrado, o método retorna um valor não negativo. Se a string ou caractere não for encontrado, -1 será retornado. Podemos usar esta propriedade para encontrar a contagem total de um caractere presente em uma determinada string. Observe o exemplo a seguir.

Nome do arquivo: IndexOfExample5.java

 public class IndexOfExample5 { // main method public static void main(String argvs[]) { String str = 'Welcome to JavaTpoint'; int count = 0; int startFrom = 0; for(; ;) { int index = str.indexOf('o', startFrom); if(index >= 0) { // match found. Hence, increment the count count = count + 1; // start looking after the searched index startFrom = index + 1; } else { // the value of index is - 1 here. Therefore, terminate the loop break; } } System.out.println('In the String: '+ str); System.out.println('The 'o' character has come '+ count + ' times'); } } 

Saída:

 In the String: Welcome to JavaTpoint The 'o' character has come 3 times 

Exemplo de método Java String indexOf (String substring)

O método usa substring como argumento e retorna o índice do primeiro caractere da substring.

Nome do arquivo: IndexOfExample2.java

 public class IndexOfExample2 { public static void main(String[] args) { String s1 = 'This is indexOf method'; // Passing Substring int index = s1.indexOf('method'); //Returns the index of this substring System.out.println('index of substring '+index); } } 
Teste agora

Saída:

 index of substring 16 

Exemplo de método Java String indexOf (String substring, int fromIndex)

O método usa substring e índice como argumentos e retorna o índice do primeiro caractere que ocorre após o dado do índice .

Nome do arquivo: IndexOfExample3.java

 public class IndexOfExample3 { public static void main(String[] args) { String s1 = 'This is indexOf method'; // Passing substring and index int index = s1.indexOf('method', 10); //Returns the index of this substring System.out.println('index of substring '+index); index = s1.indexOf('method', 20); // It returns -1 if substring does not found System.out.println('index of substring '+index); } } 
Teste agora

Saída:

 index of substring 16 index of substring -1 

Exemplo de método Java String indexOf (int char, int fromIndex)

O método usa char e index como argumentos e retorna o índice do primeiro caractere que ocorre após o dado do índice .

Nome do arquivo: IndexOfExample4.java

 public class IndexOfExample4 { public static void main(String[] args) { String s1 = 'This is indexOf method'; // Passing char and index from int index = s1.indexOf('e', 12); //Returns the index of this char System.out.println('index of char '+index); } } 
Teste agora

Saída:

 index of char 17