Java tutorial
//package com.java2s; //License from project: Open Source License public class Main { /** * Used by the lastIndexOf(CharSequence methods) as a green implementation of lastIndexOf * * @param cs the {@code CharSequence} to be processed * @param searchChar the {@code CharSequence} to be searched for * @param start the start index * @return the index where the search sequence was found */ static int lastIndexOf(final CharSequence cs, final CharSequence searchChar, final int start) { return cs.toString().lastIndexOf(searchChar.toString(), start); } }