Here you can find the source of lastIndexOf(String text, String key, int num)
public static int lastIndexOf(String text, String key, int num)
//package com.java2s; //License from project: Apache License public class Main { public static int lastIndexOf(String text, String key, int num) { int index = -1; int fromIndex = text.length() - 1; for (int i = 0; i < num; i++) { index = text.lastIndexOf(key, fromIndex); fromIndex = index - 1;//from w w w .j a v a 2 s . c om } return index; } }