Java常用类—String类(二)
String的常用方法1
一.方法概述
- int length():返回字符串的长度
- char charAt(int index):返回某索引处的字符
- boolean isEmpty():判断是否是空字符串
- String toLowerCase():使用默认语言环境,将String中的所有字符转换为小写
- String toUpperCase():使用默认语言环境,将String中的所有字符转换为大写
- String trim():返回字符串的副本,忽略前导空白和尾部空白
- boolean equals(Object obj):比较字符串的内容是否相同
- boolean equalslgnoreCase(String anotherString):与equals方法类似,忽略大小写
- String concat(String str):将指定字符串连接到此字符串的结尾,等价于“+”
- int compareTo(String anotherString):比较两个字符串的大小
- String substring(int beginIndex):返回一个新的字符串,它是此字符串的从beginIndex开始截取到最后的一个子字符串
- String substring(int beginIndex,int endIndex):返回一个新字符串,它是此字符串从beginIndex开始到endIndex(包前不包后)的一个字符串
二.方法测试
package StringClass;
import org.junit.Test;
import java.util.Locale;
public class StringMethodTest {
@Test
public void test1(){
String s1="helloworld";
System.out.println(s1.length());
System.out.println("----------------------------");
System.out.println(s1.charAt(0));
System.out.println(s1.charAt(9));
System.out.println("----------------------------");
System.out.println(s1.isEmpty());
System.out.println("----------------------------");
String s2=s1.toUpperCase();
System.out.println(s1);
System.out.println(s2);
System.out.println("----------------------------");
String s3=" he llo world";
String s4= s3.trim();
System.out.println(s3);
System.out.println(s4);
System.out.println("----------------------------");
String s5="XuQ";
String s6="xuq";
System.out.println(s5.equalsIgnoreCase(s6));
System.out.println("----------------------------");
System.out.println(s5.concat("abc"));
System.out.println("----------------------------");
System.out.println(s5.compareTo(s6));
System.out.println(s5.compareTo(s3));
System.out.println("----------------------------");
String s7="江西农业大学";
String s8 = s7.substring(2);
System.out.println(s7);
System.out.println(s8);
String s9 = s7.substring(2, 4);
System.out.println(s9);
}
}
String的常用方法2
一.方法概述
- boolean endsWith(String suffix ):测试此字符串是否以指定的后缀结束
- boolean startsWith(String prefix ):测试此字符串是否以指定的前缀结束
- boolean startsWith(String prefix,int toffset ):测试此字符串从指定索引开始的子字符串是否以指定前缀开始
- boolean contains(CharSequence s):当且仅当此字符串包含指定的char值序列时,返回true
- int indexOf(String str):返回指定字符串在此字符串中第一次出现处的索引
- int indexOf(String str,int fromIndex):返回指定字符串在此字符串中第一次出现处的索引,从指定的索引开始
- int lastIndexOf(String str):返回指定子字符串在此字符串中最右边出现处的索引
- int lastIndexOf(String str,int fromIndex):返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索
注:indexOf和lastIndexOf方法如果未找到都是返回-1
二.代码测试
package StringClass;
import org.junit.Test;
public class StringMethodTest2 {
@Test
public void test1(){
String s1="helloworld";
boolean b1 = s1.endsWith("ld");
System.out.println(b1);
boolean b2 = s1.endsWith("h");
System.out.println(b2);
boolean b3 = s1.startsWith("He");
System.out.println(b3);
boolean b4= s1.startsWith("ll", 2);
System.out.println(b4);
System.out.println("----------------------");
boolean b5 = s1.contains("llow");
System.out.println(b5);
System.out.println("----------------------");
String s2="abcdabdeffg";
System.out.println(s2.indexOf("b"));
System.out.println(s2.indexOf("h"));
System.out.println(s2.indexOf("d", 3));
System.out.println("----------------------");
System.out.println(s2.lastIndexOf("b"));
System.out.println(s2.lastIndexOf("d", 6));
}
}
String的常用方法3
一.方法概述
1)替换:
-
String replace(char oldChar,char newChar):返回一个新的字符串,它是通过用newChar替换此字符串中出现的所有oldChar得到的 -
String replace(CharSequence target,CharSequence replacement):使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串(换多个字符串) -
String replaceAll(String regex ,String replacement):使用给定的replacement替换此字符串所有匹配给定的正则表达式的子字符串 -
String replaceFirst(String regex ,String replacement):使用给定的replacement替换此字符串所有匹配给定的正则表达式的第一个子字符串 2)匹配 -
boolean matches(String regex):告知此字符串是否匹配给定的正则表达式 3)切片 -
String[]split(String regex):根据给定正则表达式的匹配拆分此字符串 -
String[]split(String regex,int limit):根据匹配给定的正则表达式来拆分此字符串,最多不超过limit个,如果超过了,剩下的全部都放到最后一个元素中
二.方法测试
package StringClass;
import org.junit.Test;
public class StringMethodTest3 {
@Test
public void test1(){
String s1="JiangXiNongYeDaXue";
String s2 = s1.replace("NongYe", "ChaiJing");
System.out.println(s1);
System.out.println(s2);
String s3="北京大学";
String s4 = s3.replace("北京", "清华");
System.out.println(s4);
}
}
|