I'm reading a string with following format: ID First Name(contain Middle Name) Last Name birthYear
For example
722 David Beckham 1975
Right now I'm simply using this code:
ID = scannerStr.nextInt();
FirstName = scannerStr.next();
LastName = scannerStr.next();
BirthYr = scannerStr.nextInt();
But you see when people with middle name show up, this fails... For example
100 David Robert Joseph Beckham 1958
How to fix this anyone? How do I check if what I read is a word or int?

Scanner#hasNextXYZ()– Sotirios Delimanolis Mar 1 at 19:20