java endswith函数怎么用

avatar
作者
筋斗云
阅读量:0

Java的endsWith()函数用于判断字符串是否以指定的后缀结束。它的用法如下:

String str = "Hello, World!";  // 判断字符串是否以指定的后缀结束 boolean endsWithExclamation = str.endsWith("!"); // true boolean endsWithComma = str.endsWith(","); // false  System.out.println(endsWithExclamation); System.out.println(endsWithComma); 

在上面的例子中,endsWith()函数分别判断字符串str是否以感叹号!或逗号,结束。结果表明字符串str以感叹号!结束(为true),但不以逗号,结束(为false)。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!