在 Java 中查找字符串中某个字符的最后一个出现位置
使用最后一次方法来查找 Java 中某个字符串中某个字符的最后一个出现位置。
比方说以下字符串为我们字符串。
String myStr = "Amit Diwan";
在以上字符串中,我们将找到字符“i”的最后一个出现位置
myStr.lastIndexOf('i');
以下为完整示例。
示例
public class Demo { public static void main(String[] args) { String myStr = "Amit Diwan"; int strLastIndex = 0; System.out.println("String: "+myStr); strLastIndex = myStr.lastIndexOf('i'); System.out.println("The last index of character a in the string: "+strLastIndex); } }
输出
String: Amit Diwan The last index of character a in the string: 6
广告