Answers for "how to convert string into string array"

-1

how to convert string into string array

public static void main(String[] args) {
    String str = "abcdef";

    String [] array = str.split(""); //   {"a", "b", "c", "d", "e", "f" }.
    
}
Posted by: Guest on May-10-2021

Code answers related to "how to convert string into string array"

Browse Popular Code Answers by Language