解析出字符串中关键字
//解析字符串
//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("不是");
}
//不是