Sunday, June 26, 2016

Delete Particular Element of Array

  String[] str_array = {"item1","item2","item3"};
List list = new ArrayList(Arrays.asList(str_array));
list.remove("item2");
str_array = list.toArray(new String[0]);
System.out.println(Arrays.toString(str_array));

public static String[] removeItemFromArray(String[] input, String item) {
    if (input == null) {
        return null;
    } else if (input.length <= 0) {
        return input;
    } else {
        String[] output = new String[input.length - 1];
        int count = 0;
        for (String i : input) {
            if (!i.equals(item)) {
                output[count++] = i;
            }
        }
        return output;
    }
}


    String[] strArr = new String[]{"google","microsoft","apple"};
      final List list =  new ArrayList();
      Collections.addAll(list, strArr); 
      list.remove("apple");
      strArr = list.toArray(new String[list.size()]);
    System.out.println(Arrays.toString(strArr));
    

No comments:

Post a Comment

உப்பு மாங்காய்

சுருக்குப்பை கிழவி. சுருக்கங்கள் சூழ் கிழவி. பார்க்கும் போதெல்லாம் கூடையுடனே குடியிருப்பாள். கூடை நிறைய குட்டி குட்டி மாங்காய்கள். வெட்டிக்க...