1
Good morning guys I would like to get a little doubt, I have a String Stream with many lines of a txt, I need to do a split to break the lines in the Pipes, but the return as you know is a String vector, summarizing I would like to know if it is possible to get to this:
Stream<String> linhas=Files.lines(caminho,StandardCharsets.ISO_8859_1);
/**Alguma coisa aqui...**/
Stream<String[]> linhasSemPipe;//Resultado
Manipulating only Streams, no conversion to another type.
Thanks for your attention.
Show the input and output file contents you expect.
– Murillo Goulart