- substring() 提取字符串,区间左开右闭。
第一种形式:String substring (int StartIndex)
第二种形式:String substring(int startIndex,int endIndex) 里面的数据分别是开始索引和终止位后一位的索引。
如果起始位和终止位相同则截取结果是null。
- **concat() **连接两个字符
例:String s = ”Welcome to“;
String t = s.concat("AnHui");
注意这两个字符是直接连接的,中间不会有空格。
- **replace() **替换
String Str = new String("Runoob");
System.out.println(Str.replace("o", "tt"));
System.out.println(Str.replace('u', 'D'));
结果:Runttttb
RDnoob
该函数将所有的符合条件的匹配字符都替代掉,需要 注意 的是 该函数,替换项和被替换项如果是 字符 那都要是字符,如果是字符串,那就都是字符串。而且当替换项是字符串的时候,不需要关注替换项的位数和被替换项的位数是否相同
replaceAll()是一种基于表达规则的替换,相比于 replace 的只能基于字符本身的替换要灵活多变。
但是 replaceAll 使用的是正则表达式。
replaceFirst()功能是替换第一项所找到的匹配项,同样和replaceAll相同使用的是正则表达式。
- **trim() ** 去掉起始和结尾的空格
- toLowerCase() 字母转化为小写
- toUpperCase() 字母转化为大写
- charAt() 获取字符串该位置的字符。
- **getChars() ** 截取多个字符
void getChars(int sourceStart,int sourceEnd,char target[],int targetStart)
sourceStart 指定了子串开始字符的下标
sourceEnd 指定了子串结束后的下一个字符的下标。 区间左开右闭。
target 指定接收字符的数组
targetStart target中开始复制子串的下标值
String b = "hahah";
char[] a = new char[5];
b.getChars(0, b.length(), a, 0);
System.out.println(a);
需要注意,接受数组的长度如果小于截取长度,系统会报错。
-
getBytes()
替代getChars()的一种方法是将字符存储在字节数组中,该方法即getBytes()
String s = "Hello!你好!";
byte[] bytes = s.getBytes();
for (byte a :bytes)
System.out.println(a);
//72 101 108 108 111 33 -28 -67 -96 -27 -91 -67 -17 -68 -127
- toCharArray()
String s = "Hello!你好!";
char[] a = s.toCharArray();
for (char b: a)
System.out.print(b + " ");
//H e l l o ! 你 好 !
-
indexOf()和lastIndexOf()
indexOf() 查找字符或者子串第一次出现的地方。
lastIndexOf() 查找字符或者子串是后一次出现的地方。 如果该字符或者字符串没有出现,则返回值 - 1
- equals() 判定两个字符串是否相同。不能忽略大小写的区别。
对于忽略大小写的比较方法。需要再equals 之后 添上 IgnoreCase。
String a = "a";
String b = "A";
System.out.println(a.equalsIgnoreCase(b));
// ture
- split() 字符串分割
分割之后要用数组去 保存。
String a = "asdf asf asf kj klj";
String[] b = a.split(" ");
for (String c : b)
System.out.print(c + " ");
//asdf asf asf kj klj
-
startsWith()和endsWith() 判断是否是特定的字符开始。
startsWith()方法决定是否以特定字符串开始endWith()方法决定是否以特定字符串结束
String a = "abcdefg"; System.out.println(a.startsWith("a",3));
String a = "abcdefg"; System.out.println(a.startsWith("a"));
这两个方法既可以不加索引直接从头开始,也可以添加索引从索引位置判断。
但是这种方法和charAt()有什么区别吗?
这种方法和charAt()的最大区别在于它可以直接判断 字符串,对于单个字符的判断 s 和 c 都可以完成,但是当需要判断的是字符串时,s 明显要比 c 放边上很多。
- regionMatches() 方法用于检测两个字符串在一个区域内是否相等。
public boolean regionMatches(int toffset,
String other,
int ooffset,
int len)
或
public boolean regionMatches(boolean ignoreCase,
int toffset,
String other,
int ooffset,
int len)
- ignoreCase -- 如果为 true,则比较字符时忽略大小写。
- toffset -- 此字符串中子区域的起始偏移量。
- other -- 字符串参数。
- ooffset -- 字符串参数中子区域的起始偏移量。
- len -- 要比较的字符数。
public class Test {
public static void main(String args[]) {
String Str1 = new String("www.runoob.com");
String Str2 = new String("runoob");
String Str3 = new String("RUNOOB");
System.out.print("返回值 :" );
System.out.println(Str1.regionMatches(4, Str2, 0, 5));
System.out.print("返回值 :" );
System.out.println(Str1.regionMatches(4, Str3, 0, 5));
System.out.print("返回值 :" );
System.out.println(Str1.regionMatches(true, 4, Str3, 0, 5));
}
}
以上程序执行结果为:
返回值 :true
返回值 :false
返回值 :true