标签:system 操作 art 常用语法 ring 字符串 开头 end 字符
1、Java判断String是否以某个字符串开头:
String mobile = "8618730600000";
System.out.println(mobile.startsWith("86"));//输出true
2、Java判断String是否以某个字符串结尾:
String mobile = "8618730600000";
System.out.println(mobile.endsWith("0000"));//输出true
标签:system 操作 art 常用语法 ring 字符串 开头 end 字符
原文地址:https://www.cnblogs.com/yaohuimo/p/11946507.html