Hello,
assume that i have the flowing arrayList:
ArrayList arr = new arrayList(); arr.add("hi"); arr.add(2.5); arr.add("x"); arr.add(2.9); arr.add(1.0);
now i want to convert every double value in arr to integer, how to do that (just the double and ignore another types)