Home »
        Java Programs » 
        Java ArrayList Programs
    
        
    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).
        
            By IncludeHelp Last updated : December 31, 2023
        
    
    Problem statement
    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
The output of the above example is:
Original list: [One, Two, Three, Four, Five]
List of first three elements: [One, Two, Three]
	Java ArrayList Programs »
	
	
    
    
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement