Our application is mining names from people using Twitter to login.
Twitter is providing full names in a single string.
Examples
1. \"Froeder
String#split takes a second argument, the limit.
str.split(' ', 2)
should do the trick.