string的一些常用方发有哪些
String是Java中最常用的类之一,它代表字符串类型。在实际开发中,我们经常需要对字符串进行一些常用操作,比如字符串连接、截取、替换等。下面是一些常用的String操作:
1. 字符串连接:使用“+”或concat()方法可以将两个或多个字符串连接起来。
```java
String s1 = "Hello";
String s2 = "world!";
String s3 = s1 + " " + s2; // Hello world!
String s4 = s1.concat(" ").concat(s2); // Hello world!
```
2. 字符串长度:使用length()方法可以获取字符串的长度。
```java
String s = "Hello world!";
int len = s.length(); // 12
```
3. 字符串截取:使用substring()方法可以截取字符串的一部分。
```java
String s = "Hello world!";
String s1 = s.substring(0, 5); // Hello
String s2 = s.substring(6); // world!
```
4. 字符串替换:使用replace()方法可以将字符串中的某个字符或字符串替换为另一个字符或字符串。
```java
String s = "Hello world!";
String s1 = s.replace("world", "java"); // Hello java!
```
5. 字符串转化:使用toLowerCae()、toUpperCase()、trim()等方法可以实现字符串的小写、大写、去除空格等操作。
```java
String s = " Hello world! ";
String s1 = s.toLowerCase(); // hello world!
String s2 = s.toUpperCase(); // HELLO WORLD!
String s3 = s.trim(); // Hello world! (去除空格)
```
6. 字符串判断:使用equals()方法可以判断两个字符串是否相等,使用startsWith()、endsWith()方法可以判断字符串是否以某个前缀或后缀开始。
```java
String s1 = "Hello";
String s2 = "hello";
boolean b1 = s1.equals(s2); // false
boolean b2 = s1.startsWith("He"); // true
boolean b3 = s1.endsWith("lo"); // true
```
这些都是String中常用的方法,使用它们可以方便地对字符串进行操作和处理。在实际开发中,我们经常需要使用String中的方法来处理字符串,能够提高代码的效率和可读性。