Here we have a small class that convert a string literal into an array, a character array. To do this we can simply use String.toCharArray()
method.
package org.kodejava.lang;
public class StringToArrayExample {
public static void main(String[] args) {
// We have a string literal that contains the tag line of this blog.
String literal = "Kode Java - Learn Java by Examples";
// Now we want to convert or divided it into a small array of char.
// To do this we can simply used String.toCharArray() method. This
// method splits the string into an array of characters.
char[] temp = literal.toCharArray();
// Here we just iterate the char array and print it to our console.
for (char c : temp) {
System.out.print(c);
}
}
}
Latest posts by Wayan (see all)
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023
- How do I export MySQL database schema into markdown format? - January 10, 2023