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 create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023