Hi all,
How do i store matching substring and string inside one single arraylist?
example:
[[er, every, errant]] which saying er substring is inside string every and errant.how should i make the comparison?
basically what i did is only make 2 arraylist
a1 = new ArrayList();
a2 = new ArrayList();
a1.add("er");
a2.add("every");
a2.add("errant");
a2.add(a1); but this does not make any matching between the substring and string. thanks.