endsWith方法: 测试此字符串是否以指定的后缀结束

Java String类的endsWith(String suffix)方法用于测试当前字符串是否以指定的后缀字符串结尾。如果当前字符串以指定的后缀字符串结尾,该方法返回true,否则返回false。

该方法的方法签名为:

public boolean endsWith(String suffix)

其中,suffix为指定的后缀字符串。

以下是完整的使用方法攻略:

1. 使用方法

1.1. 基本语法

通过调用String对象的endsWith()方法来检查它是否以特定的后缀字符串结束。有关该方法的语法如下所示:

boolean bool = str.endsWith(suffix);

其中,str表示要检查的字符串,suffix表示要检查的后缀字符串。如果s字符串以后缀字符串sufffix结尾,则返回true,否则返回false

1.2. 示例代码

下面是示例代码,演示如何使用endsWith()方法:

public class EndsWithExample {
    public static void main(String[] args) {
        String str1 = "Hello World!";
        String str2 = "World!";
        String str3 = "world!";

        // 测试str1是否以str2结尾
        boolean result1 = str1.endsWith(str2);
        System.out.println("str1以str2结尾吗?" + result1);

        // 测试str1是否以str3结尾
        boolean result2 = str1.endsWith(str3);
        System.out.println("str1以str3结尾吗?" + result2);
    }
}

上述代码的输出结果为:

str1以str2结尾吗?true
str1以str3结尾吗?false

2. 总结

Java String类的endsWith()方法是一个非常有用的方法,可以用于检查一个字符串是否以指定的后缀字符串结尾。在处理一些字符串操作时,该方法非常常用,应该掌握其使用方法和注意事项。

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:endsWith方法: 测试此字符串是否以指定的后缀结束 - Python技术站

(0)
上一篇 2023年4月19日
下一篇 2023年4月19日

相关文章

合作推广
合作推广
分享本页
返回顶部