其他分享
首页 > 其他分享> > 字符串获取相关方法和字符串截取的方法

字符串获取相关方法和字符串截取的方法

作者:互联网

字符串获取相关方法

public int length();获取字符串当中含有的字符个数 拿到字符串长度

代码:

public static void main(String[] args) {
String s="asdfghjklqwertyuiopzxcvbnm";
System.out.println(s.length());
//注意:只要在双冒号里都算一个字符 包括:空格
String s1="a sdfghjklqwertyuiopzxcvbnm";
System.out.println(s1.length());
}

运行结果:

 

 

 

 

public String concat(String str):将当前字符串和参数字符串拼接成为返回值新的字符串

代码:

public static void main(String[] args) {
String s="stu";
String dent = s.concat("dent");
System.out.println(dent);
}

运行结果

 

 

 

 

public char charAt(int index):获取指定索引位置的单个字符。注意:索引是从0开始的

代码:

public static void main(String[] args) {
String s="qwe";
/*
q w e
0 1 2
*/
char c = s.charAt(2);//e
System.out.println(c);
}

运行结果

 

 

 

 

public int indexOf(String str):查找参数字符串在本字符串当中首次出现的索引位置 如果没有返回-1值

代码:

public static void main(String[] args) {
String s="abcmnjm";
//是根据你输入的字符在字符串中查找第一次出现的问题 如果找到了就返回位置 如果没有就返回-1
int i = s.indexOf("m");
int i1 = s.indexOf("z");
System.out.println(i);
System.out.println(i1);
}

运行结果:

 

 

 

字符串截取的方法

public String substring(int index):截取从参数位置一直到字符串末尾 返回新的字符串

代码:

String s="asdfghjkl";
/*注意:索引是从0开始
a s d f g h j k l
0 1 2 3 4 5 6 7 8;
*/
String substring = s.substring(5);//hjkl
System.out.println(substring);

运行结果:

 

public String substring(int begin,int end):截取从begin开始,一直到end结束 中间的字符串 注意:包含左边 不包含右边

代码:

public static void main(String[] args) {
String s="itheima";
/*
i t h e i m a
0 1 2 3 4 5 6
*/
//注意:包含左边 不包含右边
String substring = s.substring(2, 5);//从2开始到4结束
System.out.println(substring);//hei
}

运行结果:

标签:String,int,截取,substring,字符串,方法,public,out
来源: https://www.cnblogs.com/aimz01/p/16435493.html