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

判断字符串的开头和结尾

时间:2016-05-14 00:41:23      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

package com.text_1;

public class lianxi1111 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
		//代码实现判断字符串的开头和结尾
		String str="jnjcubhksbwiowhfkalohafwac";
		 
		if (str.indexOf("jnj")==0)
		{
			System.out.println("jnj"+"是字符串的开头");
		}
	    //System.out.println(str.length());
	    
		System.out.println(str.substring(str.length()-3));
		if(str.substring(str.length()-3)=="wac")
		{
			System.out.println("字符串的结尾是"+"wac");
		}
		else
		{
			System.out.println("cuowu");
		}

	}

}

技术分享

判断字符串的开头和结尾

标签:

原文地址:http://www.cnblogs.com/jakeasd/p/5491635.html

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