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

评论已关闭

推荐阅读

Vue中使用mind-map实现在线思维导图
2024年08月04日
VUE
Web前端最全Vue实现免密登录跳转的方式_vue怎么样不登录返回首页,最强技术实现
2024年08月04日
VUE
vue3 项目搭建教程(基于create-vue,vite,Vite + Vue)
2024年08月04日
VUE
Vue-颜色选择器实现方案——>Vue-Color( 实战*1+ Demo*7)
2024年08月04日
VUE
Vue项目卡顿慢加载?这些优化技巧告诉你!_vue数据多渲染卡顿
2024年08月04日
VUE
vue中的keep-alive详解与应用场景
2024年08月04日
VUE
Vue、React实现excel导出功能(三种实现方式保姆级讲解)
2024年08月04日
vue-office/docx插件实现docx文件预览
2024年08月04日
VUE
java调用js文件的两种方法(支持V8引擎)
2024年08月04日
JavaScript:解决计算精度问题/mathjs/bignumber.js/big.js/decimal.js
2024年08月04日
两周从爬虫小白变大神 _yjs_js_security_passport
2024年08月04日
JS笔记(对象、函数、数组)
2024年08月04日
Markdown.js:强大的纯JavaScript Markdown解析器
2024年08月04日
Vue项目:js模拟点击a标签下载文件并重命名,URL文件地址下载方法、请求接口下载文件方法总结。
2024年08月04日
vue 父组件怎么获取子组件里面的data数据
2024年08月04日
VUE
个人开发实现AI套壳网站快速搭建(Vue+elementUI+SpringBoot)
2024年08月04日
el-table 表格封装并改造实现单元格可编辑
2024年08月04日
none
nodejs环境下创建vue项目、SSH密钥登陆!!!
2024年08月04日
vue+quill+element-ui实现视频、图片上传及缩放保姆级教程,轻松使用富文本
2024年08月04日
【three.js】22. Imported Models导入模型
2024年08月04日