During the phone screening: How would you parse information from a text file?
Sigiloso
There are various ways of parsing text. The usual tools are: ◾ String.split methods ◾ StringTokenizer and StreamTokenizer classes ◾ Scanner class ◾ Pattern and Matcher classes, which implement regular expressions ◾ for the most complex parsing tasks, you can use tools such as JavaCC