在Java中,String类是一个常用的类,提供了许多可以对字符串进行操作的方法。下面是一些常见的String方法及其应用:
String str = "Hello World";
int length = str.length(); // length的值为11
String str = "Hello";
char ch = str.charAt(1); // ch的值为'e'
String str = "Hello World";
String subStr = str.substring(6, 11); // subStr的值为"World"
String str = "hello";
String upperCaseStr = str.toUpperCase(); // upperCaseStr的值为"HELLO"
String str = "WORLD";
String lowerCaseStr = str.toLowerCase(); // lowerCaseStr的值为"world"
String str1 = "Hello";
String str2 = "hello";
boolean isEqual = str1.equals(str2); // isEqual的值为false
String str = "Hello World";
int index = str.indexOf("World"); // index的值为6
String str = "Hello";
String newStr = str.replace('l', 'L'); // newStr的值为"HeLLo"
以上只是一些常用的String方法,还有很多其他方法可供使用。你可以根据具体需求选择合适的方法来操作字符串。