Answers for "java find second instance of"

1

how to get index of second occurrence java

String str = "itiswhatitis";
//returns the index of the first i in "is"
str.indexOf("is");
//returns the index of the second occurence of  i in "is" after the first 
str.indexOf("is", str.indexOf("is") + 1);
Posted by: Guest on October-27-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language