Question: Write a recursive method called indexOf that accepts two strings as parameters and that returns the starting index of the first occurrence of the second

Write a recursive method called indexOf that accepts two strings as parameters and that returns the starting index of the first occurrence of the second string inside the first string (or -1 if not found). For example, the call of indexOf( "Barack Obama ", "bam ") would return 8. (Strings already have an indexOf method, but you may not call it in your solution.)

Step by Step Solution

3.58 Rating (165 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public static int indexOfString source String targ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Building Java Programs A Back to Basics Approach Questions!