javapublicstring_Java中String类的常⽤⽅法判断功能的⽅法
public boolean equals (Object anObject):将此字符串与指定对象进⾏⽐较。
public boolean equalsIgnoreCase
(String anotherString):将此字符串与指定对象进⾏⽐较,忽略⼤⼩写。
public classString_Demo01 {public static voidmain(String[] args) {//创建字符串对象
String s1 = "hello";
String s2= "hello";
String s3= "HELLO";//boolean equals(Object obj):⽐较字符串的内容是否相同
System.out.println(s1.equals(s2)); //true
System.out.println(s1.equals(s3)); //false
System.out.println("-----------");//boolean equalsIgnoreCase(String str):⽐较字符串的内容是否相同,忽略⼤⼩写
System.out.println(s1.equalsIgnoreCase(s2)); //true
System.out.println(s1.equalsIgnoreCase(s3)); //true
System.out.println("-----------");
}
}
Object 是” 对象”的意思,也是⼀种引⽤类型。作为参数类型,表⽰任意对象都可以传递到⽅法中
注意:
2个字符串使⽤==⽐较运算符,⽐较的是地址值,如果使⽤的是equals⽅法,⽐较的是字符串内容是否相等
获取功能的⽅法
public int length ():返回此字符串的长度。
String s = "helloworld";//int length():获取字符串的长度,其实也就是字符个数
System.out.println(s.length());//10
public String concat (String str):将指定的字符串连接到该字符串的末尾。
String s = "helloworld";//String concat:将指定的字符串连接到该字符串的末尾
String s2 = s.concat("**hello itheima");
System.out.println(s2);//helloworld**hello itheima
public char charAt (int index) :返回指定索引处的 char值。
String s = "helloworld";//char charAt:获取指定索引处的字符
java replace方法
System.out.println(s.charAt(0));//h
System.out.println(s.charAt(1));//e
public int indexOf (String str) :返回指定⼦字符串第⼀次出现在该字符串内的索引。
String s = "helloworld";//获取⼦字符串第⼀次出现在该字符串内的索引,没有返回-1
System.out.println(s.indexOf("l"));//2
System.out.println(s.indexOf("wow"));//-1
System.out.println(s.indexOf("ak"));//-1
public String substring (int beginIndex):返回⼀个⼦字符串,从beginIndex开始截取字符串到字符串结尾。
String s = "helloworld";//从beginIndex开始截取字符串到字符串结尾
System.out.println(s.substring(0));//helloworld
System.out.println(s.substring(5));//world
public String substring (int beginIndex, int endIndex):返回⼀个⼦字符串,从beginIndex到endIndex截取字符串。含beginIndex,不含endIndex。
String s = "helloworld";//从beginIndex到endIndex截取字符串。含beginIndex,不含endIndex。
System.out.println(s.substring(0, s.length()));//helloworld
System.out.println(s.substring(3,8));//lowor
转换功能的⽅法
public char[] toCharArray ():将此字符串转换为新的字符数组。
String s = "HelloWorld!";//char[] toCharArray:把字符串转换为字符数组
char[] chs =s.toCharArray();
public byte[] getBytes () :使⽤平台的默认字符集将该 String编码转换为新的字节数组。
String s = "HelloWorld!";byte[] bytes = s.getBytes();
public String replace (CharSequence target, CharSequence replacement):将与target匹配的字符串使⽤replacement字符串替换。
String str = "itcast itheima";
String replace= place("it","IT");
分割功能的⽅法
有些特殊符号需要⽤ 反斜杠 \ 转义,在Java要⽤两个反斜杠 \\
public String[] split(String regex):将此字符串按照给定的regex(规则)拆分为字符串数组。
//String分割
String s = "aa|bb|cc";
String[] strArray= s.split("\\|"); for(int i = 0; i < strArray.length; i++){
System.out.print(strArray[i]);
}
⼀些常⽤⽅法
boolean contains(CharSequence s):判断字符串中是否包含指定字符。
String s = "djlfdjksdlka";boolean str = s.contains("g");
System.out.println("str" + str);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。