如何用Java判断以什么字符结尾

1. 总览

在Java中,我们可以通过String类的endsWith()方法来判断一个字符串是否以指定的字符结尾。下面是整个流程的步骤表格:

步骤 操作
1 创建一个字符串
2 使用endsWith()方法判断是否以指定字符结尾
3 输出结果

2. 具体步骤

步骤1:创建一个字符串

首先,我们需要创建一个字符串,例如:

String str = "Hello World";

在这个例子中,我们创建了一个字符串 "Hello World"。

步骤2:使用endsWith()方法判断是否以指定字符结尾

接下来,我们可以使用String类的endsWith()方法来判断字符串是否以指定字符结尾。例如,我们要判断字符串是否以 "World" 结尾:

boolean endsWith = str.endsWith("World");

在这里,我们使用了endsWith()方法,并将结果存储在一个布尔变量 endsWith 中。

步骤3:输出结果

最后,我们可以输出判断的结果,例如:

if(endsWith) {
    System.out.println("The string ends with 'World'");
} else {
    System.out.println("The string does not end with 'World'");
}

在这个例子中,如果字符串以 "World" 结尾,将输出 "The string ends with 'World'";否则输出 "The string does not end with 'World'"。

3. 结论

通过以上步骤,我们可以轻松地用Java来判断一个字符串是否以指定的字符结尾。希望这篇文章能帮助你理解并掌握这个知识点。

pie
    title 结果分布
    "String ends with 'World'" : 75
    "String does not end with 'World'" : 25