logo

Indeks ciągu znaków Java()

The IndeksOf() klasy Java String Metoda zwraca pozycję pierwszego wystąpienia określonego znaku lub ciągu w określonym ciągu.

Podpis

W Javie istnieją cztery przeciążone metody IndexOf(). Poniżej podano sygnaturę metod IndexOf():

NIE.metodaOpis
1int indeksOf(int ch)Zwraca pozycję indeksu dla danej wartości znaku
2int indeksOf(int ch, int fromIndex)Zwraca pozycję indeksu dla danej wartości znaku i z indeksu
3int indeksOf(podciąg ciągu)Zwraca pozycję indeksu dla danego podciągu
4int indeksOf(podciąg ciągu, int z indeksu)Zwraca pozycję indeksu dla danego podciągu i z indeksu

Parametry

rozdz : Jest to wartość znakowa, np. 'A'

zIndeksu : Pozycja indeksu, z której zwracany jest indeks wartości znaku lub podciągu.

podciąg : Podciąg, który ma być przeszukiwany w tym ciągu.

Zwroty

Indeks szukanego ciągu lub znaku.

Wdrożenie wewnętrzne

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

Przykład metody Java String IndexOf().

Nazwa pliku: IndeksPrzykładu.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 }} 
Przetestuj teraz

Wyjście:

 2 8 5 3 

Obserwujemy, że po znalezieniu szukanego ciągu lub znaku metoda zwraca wartość nieujemną. Jeśli ciąg lub znak nie zostanie znaleziony, zwracane jest -1. Możemy użyć tej właściwości, aby znaleźć całkowitą liczbę znaków występujących w danym ciągu. Zwróć uwagę na następujący przykład.

Nazwa pliku: IndeksPrzykładu5.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'); } } 

Wyjście:

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

Przykład metody Java String IndexOf(podciąg ciągu).

Metoda przyjmuje podciąg jako argument i zwraca indeks pierwszego znaku podciągu.

Nazwa pliku: IndeksPrzykładu2.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); } } 
Przetestuj teraz

Wyjście:

 index of substring 16 

Java String IndexOf(String substring, int fromIndex) Przykład metody

Metoda przyjmuje jako argumenty podciąg i indeks i zwraca indeks pierwszego znaku występującego po podanym zIndeksu .

Nazwa pliku: IndeksPrzykładu3.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); } } 
Przetestuj teraz

Wyjście:

 index of substring 16 index of substring -1 

Java String IndexOf(int char, int fromIndex) Przykład metody

Metoda przyjmuje char i indeks jako argumenty i zwraca indeks pierwszego znaku występującego po podanym zIndeksu .

Nazwa pliku: IndeksPrzykładu4.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); } } 
Przetestuj teraz

Wyjście:

 index of char 17