String input0 = "G1 and G2 are the founders of Microsoft.";
String input1 = "The swimming medals were won by G1 and G2";
I would like to parse the above strings and create 2 separate arrays (Note: G1, G2, G3, ... are placeholders for user input and would like to get them separately)
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 "]
I've tried using indexOf
functions and split
, but haven't been able to get it working properly so far.