在Java语言中将字符串作为对象来处理,通过java.lang包中的String类来创建字符串对象。
一、String类
可以通过下面语法格式来声明字符串变量:
String str=[null]
String:指定该变量为字符串类型。
str:任意有效的标识符,表示字符串变量的名称。
null:如果省略null,表示str变量是未初始化的状态,否则表示声明的字符串的值等于null。
二、连接字符串
使用“+”运算符可以实现连接多个字符串的功能。“+”运算符可以连接多个运算符并产生一个String对象。示例代码如下:
package com.example;
public class Join {
public static void main(String args[]){
String s1=new String("hello");
String s2=new String("java");
String s=s1+" "+s2;
System.out.println(s);
}
}
运行结果如下图:
三、获取字符串信息
3.1获取字符串长度
使用String类的length()方法可获取声明的字符串对象的长度。语法如下:
str.length();
其中,str为字符串对象。实例代码如下:
String str="we are students";
int size=str.length();
上述代码是将字符串str的长度赋值给int型变量size,此时变量size的值为15,这表示length()方法返回的字符串的长度包括字符串中的空格。
3.2字符串查找
String类提供了两种字符串查找的方法,即indexOf()和lastIndexOf()方法。这两种方法都允许在字符串中搜索指定条件的字符或者字符串。indexOf()方法返回的是搜索的字符或字符串首次出现的位置,lastIndexOf()方法返回的是搜索的字符或字符串最后一次出现的位置。
(1)indexOf(String s)
该方法用于返回参数字符串s在指定字符串中首次出现的位置。当调用字符串的indexOf()方法,会从当前字符串的开始位置搜索s的位置;如果没有检测到字符串s,该方法的返回值为-1。示例代码如下:
String str="we are students";
int size=str.indexOf("a");//变量size的值为3
(2)lastIndexOf(String s)
该方法用于返回指定字符串最后一次出现的索引位置。当调用字符串的lastIndexOf()方法时,会从当前字符串的开始位置检索参数字符串str,并将最后一次出现str的索引位置返回。如果没有检测到字符串s,该方法的返回值为-1。示例代码如下:
package com.example;
public class Text1 {
public static void main(String args[]){
String str="we are students";
int size=str.lastIndexOf("");
System.out.println("空字符在字符串str中的索引位置是:"+size);
System.out.println("字符串str的长度是:"+str.length());
}
}
运行结果如下:
注意:如果lastIndexOf()方法中的参数是空字符串""(没有空格),则返回的结果与调用该字符串length()方法的返回结果相同。
3.3获取指定索引位置的字符
使用charAt()方法可将指定索引处的字符返回。语法如下:
str.charAt(int index);
str:任意字符串。
index:整数型,用于指定要返回字符的下标。
示例代码如下:
package com.example;
public class Ref {
public static void main(String args[]){
String str="hello word";
char mychar=str.charAt(6);
System.out.println("字符串str中索引位置是5的字符是:"+mychar);
}
}
运行结果如下:
四、字符串操作
4.1获取子字符串
通过String类的substring()方法对字符串进行截取。这些方法的共同点就是利用字符串的下标进行截取,且应明确字符串下标是从0开始的。
(1)substring(int beginIndex)
该方法返回的是从指定索引位置开始截取直到该字符串结尾的子串。示例代码如下:
String str="Hello Word";
String substr=str.substring(3);//此时substr的值为lo Word
(2)substring(int beginIndex,int endIndex)
该方法返回的是从字符串某一索引位置开始截取至某一索引位置结束的子串。示例代码如下:
package com.example;
public class Subs {
public static void main(String args[]){
String str="hello word";
String substr=str.substring(0,3);
System.out.println(substr);
}
}
运行结果如下:
4.2去除空格
trim()方法返回字符串的副本,忽略前导空格和尾部空格。语法如下:
str.trim();
示例代码如下:
package com.example;
public class Blak {
public static void main(String args[]){
String str=" java class ";
System.out.println("字符串原来的长度:"+str.length());
System.out.println("去掉空格后的长度:"+str.trim().length());
}
}
运行结果如下:
4.3字符串替换
replace()方法可实现将指定的字符或字符串替换为新的字符或字符串。语法如下:
str.replace(char oldChar,char newChar);
oldChar:要替换的字符或者字符串。
newChar:用于替换原来字符串的内容。
示例代码如下:
package com.example;
public class NewStr {
public static void main(String args[]){
String str=" address";
String newstr=str.replace("a","A");
System.out.println(newstr);
}
}
4.4判断字符串是否相等
对字符串对象进行比较不能简单的使用比较运算符“==”,因为比较运算符比较的是两个字符串的地址是否相同。即使两个字符串的内容相同,两个对象的内存地址也是不同的,使用比较运算符仍然会返回false。
(1)equals()方法
如果两个字符串具有相同的字符和长度,则使用equals()方法进行比较时返回true。
(2)equalsIgnoreCase()方法
使用equals()方法对字符串进行比较时是区分大小写的,而使用equalsIgnoreCase()方法是在忽略了大小写的情况下比较两个字符串是否相等,返回结果仍为boolean类型。示例代码如下:
package com.example;
public class Opinion {
public static void main(String args[]){
String s1=new String("abc");
String s2=new String("ABC");
boolean b=s1.equals(s2);
boolean b2=s1.equalsIgnoreCase(s2);
System.out.println(s1+" equals "+s2+":"+b);
System.out.println(s1+" equalsIgnoreCase "+s2+":"+b2);
}
}
运行结果如下: