Languages
[Edit]
EN

Java - convert string to character array

0 points
Created by:
Sylvie-Justice
490

In this article, we would like to show you how to convert a string to a character array in Java.

Practical example

The following example shows how to obtain a character array from a String instance using the toCharArray() method.

public class StringExample {

    public static void main(String[] args) {
        String sampleString = "This is your text...";
        char[] charArray = sampleString.toCharArray();

        System.out.println( charArray ); // This is your text...

        System.out.println( sampleString.getClass() ); // class java.lang.String
        System.out.println(    charArray.getClass() ); // class [C
    }
}

Output: 

This is your text...
class java.lang.String
class [C
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - convert string to character array

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join