Hi, 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, to know if this is possible:
Stream<String> linhas=Files.lines(caminho,StandardCharsets.ISO_8859_1);
/**Alguma coisa aqui...**/
Stream<String[]> linhasSemPipe;//Resultado
Manipulating only Streams, without converting to another type.
Thanks in advance for your attention.