package findFirst; import java.util.Scanner; public class FindFirst { public static void main(String[] args) { Scanner scan = new Scanner( System.in ); System.out.print( "Mein Satz: " ); String mySentence = scan.nextLine(); System.out.print( "Passage: " ); String mySection = scan.nextLine(); scan.close(); int indexPosition = mySentence.indexOf( mySection ); System.out.println( "Erstes Vorkommen: " + ( indexPosition + 1 )); } } Output: Mein Satz: Hier kommt der Himmel der Erde näher. Passage: Hi Erstes Vorkommen: 1