String input0 = "G1 and G2 are the founders of Microsoft.";
String input1 = "The swimming medals were won by G1 and G2";
Ich möchte die oben genannten Zeichenfolgen zu analysieren und erstellen Sie 2 separate Arrays (Hinweis: G1, G2, G3, ... sind Platzhalter für Benutzereingaben und möchte sie separat zu erhalten)
e.g. for input0 the following arrays should be created array0 [G1, G2] and array1 [" and ", " is the founder of Microsoft."]
e.g for input1 the following arrays should be created array0 [G1, G2] and array1 ["The swimming medals were won by ", " and "]
Ich habe versucht, mit indexOf
Funktionen und split
aber bisher ist es mir nicht gelungen, es richtig zum Laufen zu bringen.