当前位置:   article > 正文

12.Java String 类教程(一看就会)

12.Java String 类教程(一看就会)

Java 中的 String 类是 java.lang 包中的一个类,用于表示字符串。它提供了许多方法和常量来处理字符串。

String 类的常量

String 类中有许多常量,用于表示字符串的类别和属性。以下是一些常量的列表:

  • String.EMPTY: 一个空字符串。
  • String.valueOf(): 将对象转换为字符串。
  • String.format(): 格式化字符串。
  • String.valueOf(): 将对象转换为字符串。

String 类的方法

String 类中有许多方法,用于处理字符串。以下是一些方法的列表:

  • charAt(int index): 返回指定索引的字符。
  • concat(String str): 将字符串连接到当前字符串。
  • contains(String str): 返回是否包含指定字符串。
  • endsWith(String suffix): 返回是否以指定后缀结尾。
  • equals(Object obj): 返回是否等于指定对象。
  • equalsIgnoreCase(String str): 返回是否等于指定字符串(忽略大小写)。
  • indexOf(int ch): 返回指定字符在字符串中的索引。
  • indexOf(String str): 返回指定字符串在字符串中的索引。
  • lastIndexOf(int ch): 返回指定字符在字符串中最后出现的索引。
  • lastIndexOf(String str): 返回指定字符串在字符串中最后出现的索引。
  • length(): 返回字符串的长度。
  • replace(char oldChar, char newChar): 替换指定字符。
  • replace(String oldStr, String newStr): 替换指定字符串。
  • split(String regex): 将字符串分割为数组。
  • startsWith(String prefix): 返回是否以指定前缀开头。
  • substring(int beginIndex): 返回从指定索引开始的子字符串。
  • substring(int beginIndex, int endIndex): 返回从指定索引开始到指定索引结束的子字符串。
  • toCharArray(): 将字符串转换为字符数组。
  • toLowerCase(): 将字符串转换为小写。
  • toUpperCase(): 将字符串转换为大写。
  • trim(): 将字符串的前后空格去除。

String 类的示例代码

以下是一个使用 String 类的示例代码:

  1. public class StringExample {
  2. public static void main(String[] args) {
  3. // 获取指定索引的字符
  4. char c = "hello".charAt(1);
  5. System.out.println(c); // 输出:e
  6. // 将字符串连接到当前字符串
  7. String str = "hello" + "world";
  8. System.out.println(str); // 输出:helloworld
  9. // 返回是否包含指定字符串
  10. boolean contains = "hello world".contains("world");
  11. System.out.println(contains); // 输出:true
  12. // 返回是否以指定后缀结尾
  13. boolean endsWith = "hello world".endsWith("world");
  14. System.out.println(endsWith); // 输出:true
  15. // 返回是否等于指定对象
  16. Object obj = "hello";
  17. boolean equals = "hello".equals(obj);
  18. System.out.println(equals); // 输出:true
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/920433
推荐阅读
相关标签
  

闽ICP备14008679号