How to extract some of the elements from given list in Java?

Here, we are implementing a java program that will have some elements in the list and we will extract particular elements (from given to index to from index).
Submitted by IncludeHelp, on December 11, 2017

Given a list and we have to extract elements from to index to from index using java program.

Example:

    Input:
    Original list: [One, Two, Three, Four, Five]
    Now, we have to extract elements from 0 to 3 index (first 3 elements 

    Output:
    List of first three elements: [One, Two, Three]

Program to extract elements from a list in java

import java.util.ArrayList;
import java.util.List;

public class ExArrayExtract {
  public static void main(String[] args) {
    // Create a list and add some elements to the list.
    List < String > list_Strings = new ArrayList < String > ();

    list_Strings.add("One");
    list_Strings.add("Two");
    list_Strings.add("Three");
    list_Strings.add("Four");
    list_Strings.add("Five");

    // print the original string.
    System.out.println("Original list: " + list_Strings);

    // string extracted from given index.
    List < String > sub_List = list_Strings.subList(0, 3);

    // print extracted string.
    System.out.println("List of first three elements: " + sub_List);
  }
}

Output

Original list: [One, Two, Three, Four, Five]
List of first three elements: [One, Two, Three]

Java ArrayList Programs »





Comments and Discussions!










Copyright © 2023 www.includehelp.com. All rights reserved.