java 匹配字符串数组_输入一个字符串并查看该字符串是否与数组中的任何字符串匹配(JAVA)...
时间: 2023-12-30 21:05:51 浏览: 161
java字符串匹配
你可以使用 Java 中的 Arrays 类和 for 循环来检查一个字符串是否与一个字符串数组中的任何字符串匹配。以下是一个示例代码:
```
import java.util.Arrays;
public class StringMatchingExample {
public static void main(String[] args) {
String[] strArray = {"apple", "banana", "orange", "grape"};
String inputStr = "orange";
boolean isMatched = false;
for (String str : strArray) {
if (str.equals(inputStr)) {
isMatched = true;
break;
}
}
if (isMatched) {
System.out.println("Input string is matched with one of the strings in the array.");
} else {
System.out.println("Input string is not matched with any of the strings in the array.");
}
}
}
```
在上面的代码中,我们首先定义了一个字符串数组 `strArray`,然后定义了一个输入字符串 `inputStr`。接下来,我们使用一个布尔值变量 `isMatched` 来存储输入字符串是否与任何一个字符串数组中的字符串匹配。然后,我们使用 for 循环遍历字符串数组中的每一个字符串,并使用 equals 方法检查其是否与输入字符串匹配。如果匹配,则将 `isMatched` 设置为 true,并使用 break 语句跳出循环。最后,我们检查 `isMatched` 的值,并输出相应的结果。
你可以根据需要修改输入字符串和字符串数组,以测试代码的运行结果。
阅读全文