Online Java Compiler By
JavaTpoint.com
public class LastIndexOfExample3 { public static void main(String[] args) { String str = "This is last index of example"; int index = str.lastIndexOf("of"); System.out.println(index); } }
Output