java String类方法汇总-最全

Java String类包含大量的方法来处理和操作字符串。以下是一些常用的String类方法:

  1. char charAt(int index):返回指定索引处的字符。
  2. int length():返回字符串的长度。
  3. int indexOf(String str):返回第一次出现的指定子字符串在字符串中的索引。
  4. int lastIndexOf(String str):返回最后一次出现的指定子字符串在字符串中的索引。
  5. boolean contains(CharSequence s):当且仅当此字符串包含指定的 char 值序列时,返回 true
  6. boolean isEmpty():当且仅当长度为 0 时返回 true
  7. String toLowerCase():将所有在此字符串中的字符转换为小写。
  8. String toUpperCase():将所有在此字符串中的字符转换为大写。
  9. String trim():返回一个前后不含任何空白字符的字符串。
  10. boolean equals(Object anObject):将此字符串与指定的对象比较。
  11. boolean equalsIgnoreCase(String anotherString):将此 String 与另一个 String 比较,不考虑大小写。
  12. String concat(String str):将指定字符串连接到此字符串的结尾。
  13. String replace(char oldChar, char newChar):返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。
  14. boolean startsWith(String prefix):测试此字符串是否以指定的前缀开始。
  15. boolean endsWith(String suffix):测试此字符串是否以指定的后缀结束。
  16. String substring(int beginIndex):返回一个新的字符串,它是此字符串的一个子字符串。
  17. String substring(int beginIndex, int endIndex):返回一个新字符串,它是此字符串的一个子字符串,从指定的 beginIndex 开始到 endIndex - 1。
  18. String[] split(String regex):根据给定正则表达式的匹配拆分此字符串。
  19. String join(CharSequence delimiter, CharSequence... elements):将元素连接起来,在每两个元素之间插入分隔符。

这些方法涵盖了字符串操作的基本需求,包括查找、修改、比较、大小写转换、检查和分割等。

以下是一个使用String类方法的简单示例:




public class StringMethodsExample {
    public static void main(String[] args) {
        String example = "Hello, World!";
 
        char firstChar = example.charAt(0); // 'H'
        int length = example.length(); // 13
        int index = example.indexOf("World"); // 7
        boolean contains = example.contains("World"); // true
        boolean isEmpty = example.isEmpty(); // false
        String lowerCase = example.toLowerCase(); // "hello, world!"
        String upperCase = example.toUpperCase(); // "HELLO, WORLD!"
        String trimmed = example.trim(); // "Hello, World!" if original string has no leading/trailing whitespace
        boolean equals = example.equals("Hello, World!"); // true or false depending on the comparison
        boolean startsWith = example.startsWith("Hello"); // true
        boolean endsWith = example.endsWith("World!"); // false
        String replaced = example.replace("World", "Java"); // "Hello, Java!"
        String concatenated = "Hello, ".concat("World!"); // "Hello, World!"
        String substring = example.substring(0, 5); // "Hello"
 
        Sys
最后修改于:2024年08月27日 10:38

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日