次の例では、文字列関数 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 中国語 Web サイト (www.php.cn) に注目してください。