Possible Duplicate:
removing value from the list
I have a query I have a Map like this
Map ab = new HashMap<String, List<String>>();
and it contains the value like this
1 22 23 24 25
so 1 is the key and the values are 22,23,24,25
Now I want to change the structure
like this
1 22 23 24 25 | M
as shown above that in list apart from 22,23,24,25 I want to store pipe |M also please advise how to achieve this