Java 中的 String 类是一个经常使用的类,提供了许多常用的方法来操作和处理字符串。以下是一些常见的 String 类方法:
-
length():
返回字符串的长度(字符数)。String str = "Hello, World!"; int length = str.length(); System.out.println(length); // 输出 13
-
charAt(int index):
返回字符串中指定位置的字符。String str = "Hello"; char ch = str.charAt(0); System.out.println(ch); // 输出 'H'
-
substring(int beginIndex, int endIndex):
返回从指定索引开始到指定索引结束的子字符串。String str = "Hello, World!"; String subStr = str.substring(7, 12); System.out.println(subStr); // 输出 "World"
-
concat(String str):
将指定字符串连接到原字符串的末尾。String str = "Hello"; String newStr = str.concat(", World!"); System.out.println(newStr); // 输出 "Hello, World!"
-
equals(String str):
比较字符串是否相等(内容相同)。String str1 = "Hello"; String str2 = "Hello"; boolean isEqual = str1.equals(str2); System.out.println(isEqual); // 输出 true
-
toLowerCase() 和 toUpperCase():
将字符串转换为小写或大写形式。String str = "Hello, World!"; String lowerCaseStr = str.toLowerCase(); String upperCaseStr = str.toUpperCase(); System.out.println(lowerCaseStr); // 输出 "hello, world!" System.out.println(upperCaseStr); // 输出 "HELLO, WORLD!"
-
trim():
去除字符串两端的空白字符。String str = " Hello, World! "; String trimmedStr = str.trim(); System.out.println(trimmedStr); // 输出 "Hello, World!"
-
startsWith(String prefix) 和 endsWith(String suffix):
判断字符串是否以指定的前缀或后缀开始或结束。文章来源:https://www.toymoban.com/news/detail-475695.htmlString str = "Hello, World!"; boolean startsWithHello = str.startsWith("Hello"); boolean endsWithWorld = str.endsWith("World!"); System.out.println(startsWithHello); // 输出 true System.out.println(endsWithWorld); // 输出 true
这些只是 String 类的一些常用方法,还有其他很多方法可用于字符串的处理,如替换、分割、查找等。可以查阅 Java 官方文档或相关教程以获取更详细的信息和使用示例。文章来源地址https://www.toymoban.com/news/detail-475695.html
到了这里,关于Java String类常用方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!