이 기사에서는 문자열 목록을 쉼표로 구분된 문자열로 변환하는 방법을 이해합니다. Alist는 요소를 순차적으로 저장하고 액세스할 수 있는 정렬된 컬렉션입니다. 여기에는 요소를 삽입, 업데이트, 삭제 및 검색하는 인덱스 기반 메서드가 포함되어 있습니다. 중복 요소가 있을 수도 있습니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
Input list: [Java, Scala, Python]
원하는 출력은 -
The list with comma separated elements: Java, Scala, Python
알고리즘
Step 1 - START Step 2 - Declare a List namely input_list. Step 3 - Define the values. Step 4 - Use the built in function .join() to add comma in between the elements of the object. Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 모든 작업을 'main' 기능 아래에 묶습니다.
import java.util.*; public class Demo { public static void main(String args[]){ List<String> input_list = new ArrayList<>( Arrays .asList("Java", "Scala", "Python")); System.out.println("The input_list is defined as: " + input_list); String string = String.join(", ", input_list); System.out.println("The list with comma separated elements: " + string); } }
출력
The input_list is defined as: [Java, Scala, Python] The list with comma separated elements: Java, Scala, Python
예시 2
여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.
import java.util.*; public class Demo { static void add_comma(List<String> input_list){ String string = String.join(", ", input_list); System.out.println("The list with comma separated elements: " + string); } public static void main(String args[]){ List<String> input_list = new ArrayList<>( Arrays .asList("Java", "Scala", "Python")); System.out.println("The list is defined as: " + input_list); add_comma(input_list); } }
출력
The list is defined as: [Java, Scala, Python] The list with comma separated elements: Java, Scala, Python