I have a string
String string="I would loved to be the part of cricket team"
and I have a arraylist
ArrayList <String> list = new ArrayList();
list.add("part");
list.add("bend");
list.add("bet");
list.add("bear");
list.add("beat");
list.add("become");
list.add("begin");
Now I want to search from this string using this arraylist. How can i Do that without using for loop ?
Now I want to search from this string using this arraylistCan you explain what it is ?