Giriş
Java 11 ile geliyor. Açıklaması şöyle.Uses a Spliterator to lazily provide lines from the source string
İmzası şöyle
public Stream<String> lines()
Örnek
String output = paragraph.lines().collect(Collectors.joining());
Örnek
Şöyle yaparız
String sentence = "marry\n had\n a\n little\n lamb";
Stream<String> lineStream = sentence.lines();
lineStream.forEach(System.out::println);
// marry
// had
// a
// little
// lamb
System.out.println("The sentence has a total of " + sentence.lines().count() + " lines");
// The sentence has a total of 5 lines
Hiç yorum yok:
Yorum Gönder