I'm having trouble understanding the %@ format that the String
Scanner wants to use. I'm trying to use the Long User Name in the
Host Info Source and input that into the string scanner and pass
out each part as a value. I'm doing it with String Components as
well, but I'm just trying to see what the String Scanner will do.
What do I put in for a format string in the String Scanner if I
wanted to say, split up the string "Laird Daniel Chace Esquire"?
You can only use String Scanner to explode strings with a common
format e.g. if you have strings of the type "Name-Title-Company" you
can use a format string like "%@-%@-%@" to output the three
substrings: "Name", "Title" and "Company".