How can I extract each String from A B -> carry sum
without ->
? So, I need to get only A
B
carry
sum
. How can it be done?
A B -> carry sum
is passed as a String into the method.
public void parseContactsLine(String line)
{
Scanner readLine = new Scanner(line);
while(readLine.hasNext())
{
}
}