For example
String temp = "welcome,to,the,world,of,j2ee";
converting this to arraylist
ArrayList al= new ArrayList(temp.split(","));
this comes as content of arraylist as {"welcome","to","the","world","j2ee"}
my requirement is adding "^d" at end of every string
for ex {"welcome^d","to^d","the^d","world^d","j2ee^d"}