Name

subset()

Description

Extracts an array of elements from an existing array. The list parameter defines the array from which the elements will be copied, and the start and count parameters specify which elements to extract. If no count is given, elements will be extracted from the start to the end of the array. When specifying the start, remember that the first array element is 0. This function does not change the source array.

When using an array of objects, the data returned from the function must be cast to the object array's data type. For example: SomeClass[] items = (SomeClass[]) subset(originalArray, 0, 4)

Examples

  • String[] sa1 = { "OH", "NY", "CA", "VA", "CO", "IL" };
    String[] sa2 = subset(sa1, 1);
    println(sa2);
    // Prints the following array contents to the console:
    // [0] "NY"
    // [1] "CA"
    // [2] "VA"
    // [3] "CO"
    // [4] "IL"
    println();
    String[] sa3 = subset(sa1, 2, 3);
    println(sa3);
    // Prints the following array contents to the console:
    // [0] "CA"
    // [1] "VA"
    // [2] "CO"
    

Syntax

  • subset(list, start)
  • subset(list, start, count)

Parameters

  • list(boolean[], Object, byte[], char[], int[], long[], float[], double[], String[])array to extract from
  • start(int)position to begin
  • count(int)number of values to extract

Return

  • boolean[], byte[], char[], int[], long[], float[], double[], String[], or Object

Related