以下實例中我們透過字串函數strOrig.lastIndexOf(Stringname) 來尋找子字串Stringname 在strOrig 出現的位置:
實例程式碼如下:
//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)!