Pergunta de entrevista da empresa Camelot Global

During the phone screening: How would you parse information from a text file?

Resposta da entrevista

Sigiloso

12 de out. de 2016

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

1