Say for example, I want to get the index of "w" in "howdy", or the "g", in "wasgood", how would i do that? The Arraylist .indexOf method only seems to return the entire element stored in the Arraylist
ArrayList <String> list = new ArrayList<String>();
list.add("hi");
list.add("howdy");
list.add("greetings");
list.add("wasgood");
list.add("squareup");
list.add("plurals");