码迷,mamicode.com
首页 > 其他好文 > 详细

判断以xx开头的字符串

时间:2019-02-25 12:04:30      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:back   png   技术   ati   ack   system   print   main   字符串   

	public static void main(String[] args) {
		String str = "EAN_13,1534651";
		String strHttp = "http://weixing.qq.com";
		System.out.println(str.startsWith("EAN"));
		System.out.println(strHttp.startsWith("http"));
	}

  结果:

技术图片

	public static void main(String[] args) {
		String str = "EAN_13,1534651";
		String strHttp = "htp://weixing.qq.com";
		System.out.println(str.startsWith("EAN"));
		System.out.println(strHttp.startsWith("http"));

	}

  技术图片

判断以xx开头的字符串

标签:back   png   技术   ati   ack   system   print   main   字符串   

原文地址:https://www.cnblogs.com/shifu8005/p/10430076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!