반응형
public static void main(String[] args) {
String document = "삼성전자 LG전자 화웨이 소니 애플 삼성전자(우) 삼성화재";
String word = "삼성";
System.out.println(findIndexes(word, document));
}
public static List<Integer> findIndexes(String word, String document) {
List<Integer> indexList = new ArrayList<Integer> ();
int index = document.indexOf(word);
while(index != -1) {
indexList.add(index);
index = document.indexOf(word, index+word.length());
}
return indexList;
}
// 출처 : https://needneo.tistory.com/96
반응형
'[Java] > [Java Code]' 카테고리의 다른 글
[Java Code] https 통신하기 (SSL 인증 무시하고 작동시키기) (0) | 2022.09.03 |
---|---|
[Java Code] HashMap 을 JSONObject로 변환 / ArrayList를JSONArray 로 변환 (0) | 2022.08.02 |
[Java Code] 두 위경도 좌표로 직선 거리 구하기 (0) | 2022.06.30 |
[Java Code] pdf 파일 생성, pdf 파일 다운로드, pdf 파일 읽기 (웹에서 pdf 띄우기) (0) | 2022.06.27 |
[Java Code] 텍스트 파일 읽고 저장하기 (0) | 2022.06.27 |