다음 예에서는 문자열 함수 strOrig.lastIndexOf(Stringname)를 사용하여 strOrig에서 Stringname 하위 문자열이 나타나는 위치를 찾습니다.
예제 코드는 다음과 같습니다.
//SearchlastString.java 文件public class SearchlastString { public static void main(String[] args) { String strOrig = "Hello world ,Hello Reader"; int lastIndex = strOrig.lastIndexOf("Hello"); if(lastIndex == - 1){ System.out.println("Hello not found"); }else{ System.out.println("Last occurrence of Hello is at index "+ lastIndex); } }}
위 코드 예제의 출력 결과는 다음과 같습니다.
Last occurrence of Hello is at index 13
위는 Java 예제입니다. 마지막 항목의 내용을 찾습니다. 문자열 관련 내용에 대해 더 많은 관심을 가져주세요. PHP 중국어 웹사이트(www.php.cn)!