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
public static int indexOfString source String targ... View full answer
Get step-by-step solutions from verified subject matter experts
