ในบทความนี้ เราจะเข้าใจวิธีการแปลงรายการสตริงเป็นสตริงที่คั่นด้วยจุลภาค 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
ที่นี่ เราเชื่อมโยงการดำเนินการทั้งหมดเข้าด้วยกันภายใต้ฟังก์ชัน 'หลัก'
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