Answers for "how to check if string match with the one of the array string java"

1

java if one sting on array match

String[] fieldsToInclude = { "id", "name", "location" };

if ( ArrayUtils.contains( fieldsToInclude, "id" ) ) {
    // Do some stuff.
}
Posted by: Guest on February-13-2021

Code answers related to "how to check if string match with the one of the array string java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language