Answers for "test if string in string array java"

2

java check if element exists in array

// Convert to stream and test it
	boolean result = Arrays.stream(alphabet).anyMatch("A"::equals);
	if (result) {
		System.out.println("Hello A");
	}
Copy
Posted by: Guest on April-07-2020
2

java check if element exists in array

// Convert to stream and test it
	boolean result = Arrays.stream(alphabet).anyMatch("A"::equals);
	if (result) {
		System.out.println("Hello A");
	}
Copy
Posted by: Guest on April-07-2020

Code answers related to "test if string in string array java"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language