Answers for "create arraylist of characters"

4

arraylist of characters

import java.util.ArrayList;

  public class Test{

       String words = new String("HELLO GOODBYE!");
       ArrayList<Character> sample = new ArrayList<Character>();

       for(int i = 0; i<words.length(); i++){
           sample.add(words.charAt(i));
       }
  }
Posted by: Guest on August-20-2020

Code answers related to "create arraylist of characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language