JavaSE8基础 String endsWith 判断A字符串是否以B字符串作为结束
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE8基础 String endsWith 判断A字符串是否以B字符串作为结束相关的知识,希望对你有一定的参考价值。
os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku.t02; public class Demo02 { public static void main(String[] args) { String s1 = "World Hello"; String s2 = "hello"; String s3 = "Hello"; String s4 = "HellW"; System.out.println(s1.endsWith(s2)); System.out.println(s1.endsWith(s3));//"World Hello" 以 "Hello"作为结尾 System.out.println(s2.endsWith(s1)); System.out.println(s3.endsWith(s4)); } }
result:
Java优秀,值得学习。
学习资源:API手册+Java源码。
以上是关于JavaSE8基础 String endsWith 判断A字符串是否以B字符串作为结束的主要内容,如果未能解决你的问题,请参考以下文章
JavaSE8基础 String 将char数组的一部分转为String
JavaSE8基础 String 通过构造方法 将一维byte数组化为String
JavaSE8基础 String String.valueOf 将字符数组转成字符串
JavaSE8基础 StringBuffer toString 将其转为String对象