The Java String клас indexOf() Метод повертає позицію першого входження вказаного символу або рядка у вказаному рядку.
Підпис
У Java є чотири перевантажені методи indexOf(). Сигнатура методів indexOf() наведена нижче:
Немає. | метод | опис |
---|---|---|
1 | int indexOf(int ch) | Він повертає позицію індексу для заданого значення char |
2 | int indexOf(int ch, int fromIndex) | Він повертає позицію індексу для заданого значення char і з індексу |
3 | int indexOf(підрядок рядка) | Він повертає позицію індексу для заданого підрядка |
4 | int indexOf(String substring, int fromIndex) | Він повертає позицію індексу для даного підрядка та з індексу |
Параметри
гл : це символьне значення, напр. 'а'
fromIndex : Позиція індексу, звідки повертається індекс значення char або підрядка.
підрядок : Підрядок для пошуку в цьому рядку.
Повернення
Індекс шуканого рядка або символу.
Внутрішнє впровадження
public int indexOf(int ch) { return indexOf(ch, 0); }
Приклад методу Java String indexOf().
Ім'я файлу: 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 }}Перевірте зараз
Вихід:
2 8 5 3
Ми спостерігаємо, що коли шуканий рядок або символ знайдено, метод повертає невід’ємне значення. Якщо рядок або символ не знайдено, повертається -1. Ми можемо використовувати цю властивість, щоб знайти загальну кількість символів у даному рядку. Зверніть увагу на наступний приклад.
Ім'я файлу: 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'); } }
Вихід:
In the String: Welcome to JavaTpoint The 'o' character has come 3 times
Приклад методу Java String indexOf(String substring).
Метод приймає підрядок як аргумент і повертає індекс першого символу підрядка.
Ім'я файлу: 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); } }Перевірте зараз
Вихід:
index of substring 16
Java String indexOf(String substring, int fromIndex) Приклад методу
Метод приймає підрядок та індекс як аргументи та повертає індекс першого символу, який виникає після заданого fromIndex .
Ім'я файлу: 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); } }Перевірте зараз
Вихід:
index of substring 16 index of substring -1
Java String indexOf(int char, int fromIndex) Приклад методу
Метод приймає char та index як аргументи та повертає індекс першого символу, який виникає після заданого fromIndex .
Ім'я файлу: 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); } }Перевірте зараз
Вихід:
index of char 17