Dada una lista de strings, la tarea es convertir la lista en una string separada por comas en Java.
Ejemplos:
Input: List<String> = ["Geeks", "ForGeeks", "GeeksForGeeks"] Output: "Geeks, For, Geeks" Input: List<String> = ["G", "e", "e", "k", "s"] Output: "G, e, e, k, s"
Enfoque: Esto se puede lograr con la ayuda del método join() de String de la siguiente manera.
- Obtenga la lista de strings.
- Forme una string separada por comas de la lista de strings usando el método join() pasando la coma ‘, ‘ y la lista como parámetros.
- Imprime la String.
A continuación se muestra la implementación del enfoque anterior:
Programa:
// Java program to convert List of String // to comma separated String import java.util.*; public class GFG { public static void main(String args[]) { // Get the List of String List<String> list = new ArrayList<>( Arrays .asList("Geeks", "ForGeeks", "GeeksForGeeks")); // Print the List of String System.out.println("List of String: " + list); // Convert the List of String to String String string = String.join(", ", list); // Print the comma separated String System.out.println("Comma separated String: " + string); } }
Publicación traducida automáticamente
Artículo escrito por RishabhPrabhu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA