String StringBuffer Math类中的方法简单应用

  解析出字符串中关键字

//解析字符串
		//a.substring(需要截取的字符索引,到结束的字符索引)
		String a ="卡巴斯基#杀毒软件#免费版#俄罗斯#";
		System.out.println(a.substring(a.indexOf("卡"), 4));
		System.out.println(a.substring(a.indexOf("杀"),9));
		System.out.println(a.substring(a.indexOf("免"), 13));
		System.out.println(a.substring(a.indexOf("俄"), 17));

//卡巴斯基
//杀毒软件
//免费版
//俄罗斯

 

 

输出字符串内指定字符最后一次出现的索引位置

//解析字符最后一次出现位置的索引
		//b.lastIndexOf(String) 返回这个类型在字符串中最后出现位置的索引  
		String b ="那车水马龙的人世间,那样地来 那样地去,太匆忙";
		System.out.println(b.lastIndexOf("那"));

//15

 

判断字符串内是否以指定字符串结尾


		//判断此字符串是否是。java结尾 endsWith判断是否以此类型后缀结尾
		String c ="a.java";
		System.out.println(c.endsWith(".java"));

//true

 

输出指定字符出现在字符串中的个数

 

class geshu {
	public  int m(String e,String a) {
		int count=0;
		int f =0;
		int index=0;
		while((index=e.indexOf(a,f))!=-1) {
			f=index+1;
			count++;
		}
		return count;
		
	}
//输出指定字符串出现在指定字符串中的个数
		String eee ="apple is a apple.";
		String aaa="a";
		String ppp="p";
		geshu ge =new geshu();
		System.out.println(ge.m(eee, ppp));

		
//4

 

去掉字符串前后的空格


		//去掉字符串后的空格
		String kongge ="             我是空格       ";
		System.out.println(kongge.trim());
//我是空格
		

 

输出指定字符串反转后拼接

class geshu {
        public String fanzhuan1(String str) {
	String s=	new StringBuffer().append(str).reverse().toString();
		return str.concat(s);
	}
}
	//反转拼接
System.out.println(ge.fanzhuan1("123456"));


//123456654321





//反转拼接
		StringBuffer fanzhuan =new StringBuffer();
		fanzhuan.append("123456");
		String fan= fanzhuan.reverse().toString();
		System.out.println(fan);
		String zhengxu ="123456";
		System.out.println(zhengxu.concat(fan));
		    

创建方法使指定字符串移动指定位置

 

class geshu {
        public String moveToRight(String str,int position) {
		
		return str.substring(str.length()position,str.length())+str.substring(0,str.length()-position);
	}



//字符串右移
		System.out.println(ge.moveToRight("helloworld", 2));

//ldhellowor

 

求五个字符串内的最大值并输出

 

//求五个数最大值
		String str="吴文";
		String str2="吴文啊";
		String str3="吴文哈哈";
		String str4="吴文哎哎哎";
		String str5="吴文嗷嗷嗷啊";
		int a1=str.length();
		int b1=str2.length();
		int c1=str3.length();
		int d1=str4.length();
		int e1=str5.length();
		int max=Math.max(Math.max(Math.max(Math.max(a1, b1), c1), d1), e1);
		System.out.println("最长"+max);
		if(a1==max) {
			System.out.println("a1最长"+a1);
		}
		else if(b1==max) {
			System.out.println("b1最长"+b1);
		}
		else if(c1==max) {
			System.out.println("c1最长"+c1);
		}
		else if(d1==max) {
			System.out.println("d1最长"+d1);
		}
		else if(e1==max) {
			System.out.println("e1最长"+e1);
		}
		
//最长6
//e1最长6

 

判断字符串内是否是回文数

//判断回文数
		String huiwen="123211";
		int low=0;
		int high =huiwen.length()-1;
		boolean fow =true;
		while(low<high) {
			if(huiwen.charAt(low)!=huiwen.charAt(high)) {
				fow=false;
				break;
			}
			low++;
			high--;
			}
		if(fow) {
			System.out.println("是");
		}else {
			System.out.println("不是");
		}
//不是

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

孤鹤儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值