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:
Java Java
public static int indexOf(char[] array, char target)Parameters: The method accepts two parameters:
- array: which is the integer array in which the target array is to checked for index.
- target: which is the value to be searched for as an element in the specified array.
- It returns the position of first occurrence of the target if the target exists in the array.
- Else it returns -1 if the target does not exist in the array.
// 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:
Example 2:
Array: [G, F, G, E, E] Target: E Target is present at index 3
// 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:
Reference: https://guava.dev/releases/18.0/api/docs/com/google/common/primitives/Chars.html#indexOf(char%5B%5D, %20char)Array: [H, E, L, L, O] Target: G Target is not present in the array