You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
399 B
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);
}
}
}