I have a arraylist which contains more than 50 strings like this:
Somename#P#10.
Somename1#P#10.
Somename2#P#10.
Somename#P#10.
I have to match the string before # i.e., somename; with each and every other string. If a match found i have to delete the string from the arraylist.
Somename#P#10.
Somename1#P#10.
Somename2#P#10.
Somename#P#10.
I have to match the string before # i.e., somename; with each and every other string. If a match found i have to delete the string from the arraylist.