16.01.2020
Posted by admin
C Split String By Comma Average ratng: 9,3/10 8034 reviews
Given a List of String, the task is to convert the List to a comma separated String in Java.Examples:Input: List = 'Geeks', 'ForGeeks', 'GeeksForGeeks'Output: 'Geeks, For, Geeks'Input: List = 'G', 'e', 'e', 'k', 's'Output: 'G, e, e, k, s'Approach: This can be achieved with the help of join method of String as follows. Get the List of String.
C# Split String Array
Form a comma separated String from the List of String using join method by passing comma ‘, ‘ and the list as parameters. Print the String.Below is the implementation of the above approach:Program.