ในบทความนี้ เราจะเข้าใจวิธีการวนซ้ำอักขระแต่ละตัวของสตริง สตริงเป็นประเภทข้อมูลที่มีอักขระตั้งแต่หนึ่งตัวขึ้นไปและอยู่ในเครื่องหมายคำพูดคู่ (“ ”) Char คือประเภทข้อมูลที่มีตัวอักษรหรือจำนวนเต็มหรืออักขระพิเศษ
ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -
สมมติว่าข้อมูลที่เราป้อนคือ −
The string is defined as: Java Program
ผลลัพธ์ที่ต้องการจะเป็น −
The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,
อัลกอริทึม
Step 1 - START Step 2 - Declare a string namely input_string, a char namely temp. Step 3 - Define the values. Step 4 - Iterate over the string, print each character at index ‘i’ of the string along with a blank space. Step 5 - Display the result Step 6 - Stop
ตัวอย่างที่ 1
ที่นี่ for-loop
public class Characters { public static void main(String[] args) { String input_string = "Java Program"; System.out.println("The string is defined as: " +input_string); System.out.println("The characters in the string are: "); for(int i = 0; i<input_string.length(); i++) { char temp = input_string.charAt(i); System.out.print(temp + ", "); } } }
ผลลัพธ์
The string is defined as: Java Program The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,
ตัวอย่างที่ 2
ที่นี่ for-each loop
public class Main { public static void main(String[] args) { String input_string = "Java Program"; System.out.println("The string is defined as: " +input_string); System.out.println("The characters in the string are: "); for(char temp : input_string.toCharArray()) { System.out.print(temp + ", "); } } }
ผลลัพธ์
The string is defined as: Java Program The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,