23 Şubat 2023 Perşembe

String.join metodu

Giriş
İlk parametre ayraçtır. Stringleri birleştirir. Son son string'den sonra ayracı eklemez. Açıklaması şöyle. Yani CSV tarzı şeyleri oluşturmak için ideal :)
The join method offers the convenience of not adding the delimiter at the end of the string as well.
İmzası şöyle
public static String join(CharSequence delimiter, CharSequence... elements)
public static String join(CharSequence delimiter, Iterable<? extends CharSequence> elements)
CharSequence
Örnek
Şöyle yaparız
String joined = String.join("-", "java", "programming", "hello", "world");
System.out.println(joined); // Output: java-programming-hello-world

String joined2 = String.join("", "java", "programming", "hello", "world");
System.out.println(joined2); // Output: javaprogramminghelloworld
Örnek
Şöyle yaparız.
String.join(delimeter, foo, bar, baz, foo1, bar1);
Iterable
Örnek
Şöyle yaparız
List<String> list = List.of("java", "programming", "hello", "world");
String joined = String.join(", ", list);
System.out.println(joined); // Output: java, programming, hello, world











Hiç yorum yok:

Yorum Gönder