Open In App

Java Guava | Chars.indexOf(char[] array, char target) method with Examples

Chars.indexOf(char[] array, char target) method of Guava’s Chars Class accepts two parameters array and target. If the target exists within the array, the method returns the position of its first occurrence. If the target does not exist within the array, the method returns -1.

Syntax:



public static int indexOf(char[] array, char target)

Parameters: The method accepts two parameters:



Return Value: The method returns an integer value as follows:

Exceptions: The method does not throw any exception.

Below examples illustrate the implementation of above method:

Example 1:




// Java code to show implementation of
// Guava's Chars.indexOf(char[] array,
// char target) method
  
import com.google.common.primitives.Chars;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating an char array
        char[] arr = { 'G', 'F', 'G', 'E', 'E' };
  
        char target = 'E';
  
        System.out.println("Array: "
                           + Arrays.toString(arr));
  
        System.out.println("Target: " + target);
  
        // Using Chars.indexOf(char[] array, char target)
        // method to get the position of the first
        // occurrence of the specified target within array,
        // or -1 if there is no such occurrence.
        int index = Chars.indexOf(arr, target);
  
        if (index != -1) {
            System.out.println("Target is present at index "
                               + index);
        }
        else {
            System.out.println("Target is not present "
                               + "in the array");
        }
    }
}

Output:
Array: [G, F, G, E, E]
Target: E
Target is present at index 3

Example 2:




// Java code to show implementation of
// Guava's Chars.indexOf(char[] array,
// char target) method
  
import com.google.common.primitives.Chars;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating an char array
        char[] arr = { 'H', 'E', 'L', 'L', 'O' };
  
        char target = 'G';
  
        System.out.println("Array: "
                           + Arrays.toString(arr));
  
        System.out.println("Target: " + target);
  
        // Using Chars.indexOf(char[] array, char target)
        // method to get the start position of the first
        // occurrence of the specified target within array,
        // or -1 if there is no such occurrence.
        int index = Chars.indexOf(arr, target);
  
        if (index != -1) {
            System.out.println("Target is present at index "
                               + index);
        }
        else {
            System.out.println("Target is not present"
                               + " in the array");
        }
    }
}

Output:
Array: [H, E, L, L, O]
Target: G
Target is not present in the array

Reference: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#indexOf(char[], %20char)


Article Tags :