Java: метод для получения положения соответствия в Строке?

String match = "hello";
String text = "0123456789hello0123456789";

int position = getPosition(match, text); // should be 10, is there such a method?
127
задан hhh 11 April 2010 в 01:44
поделиться

4 ответа

Семейство методов, которые делают это:

Возвращает в этой строке индекс первого ( или последнего ) вхождения указанной подстроки [поиск вперед ( или назад ), начиная с указанного индекса].


String text = "0123hello9012hello8901hello7890";
String word = "hello";

System.out.println(text.indexOf(word)); // prints "4"
System.out.println(text.lastIndexOf(word)); // prints "22"

// find all occurrences forward
for (int i = -1; (i = text.indexOf(word, i + 1)) != -1; i++) {
    System.out.println(i);
} // prints "4", "13", "22"

// find all occurrences backward
for (int i = text.length(); (i = text.lastIndexOf(word, i - 1)) != -1; i++) {
    System.out.println(i);
} // prints "22", "13", "4"
249
ответ дан 24 November 2019 в 00:43
поделиться
text.indexOf(match);

См. String javadoc

18
ответ дан 24 November 2019 в 00:43
поделиться

Используйте string.indexOf, чтобы получить начальный индекс.

2
ответ дан 24 November 2019 в 00:43
поделиться

Вы можете получить все совпадения в файле, просто назначив внутри цикла while, круто:

$ javac MatchTest.java 
$ java MatchTest 
1
16
31
46
$ cat MatchTest.java 
import java.util.*;
import java.io.*;

public class MatchTest {
    public static void main(String[] args){
        String match = "hello";
        String text = "hello0123456789hello0123456789hello1234567890hello3423243423232";
        int i =0;
        while((i=(text.indexOf(match,i)+1))>0)
            System.out.println(i);
    }
}
2
ответ дан 24 November 2019 в 00:43
поделиться
Другие вопросы по тегам:

Похожие вопросы: