07字符串的转换相关方法
2021/11/15 6:10:36
本文主要是介绍07字符串的转换相关方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1 package com.Commonly; 2 /* 3 String 当中与转换相关的常用方法有: 4 5 public char[] toCharArray():将当前字符串拆分成为字符数组作为返回值。 6 public byte[] getBytes():获得当前字符串底层的字节数组。 7 public String replace(CharSequence oldString,CharSequence newString): 8 将所有出现的老字符串替换成为新的字符串,返回替换之后的结果新字符串。 9 备注:CharSequence意思就是说可以接受字符串类型。 10 */ 11 public class Used06 { 12 public static void main(String[] args) { 13 //转换成为字符数组 14 char[] chars = "Hello".toCharArray(); 15 System.out.println(chars[0]);//H 16 System.out.println(chars.length);//5 17 System.out.println("============"); 18 19 //转换成为字节数组 20 byte[] bytes = "abc".getBytes(); 21 for (int i = 0; i < bytes.length; i++) { 22 System.out.println(bytes[i]); 23 } 24 System.out.println("============"); 25 26 //字符串的内容替换 27 String str1 = "How do you do?"; 28 String str2 = str1.replace("o","*"); 29 System.out.println(str1);//How do you do? 30 System.out.println(str2);//H*w d* y*u d*? 31 System.out.println("============"); 32 33 String lang1 = "会不会玩呀!你大爷的!你大爷的!你大爷的!"; 34 String lang2 = lang1.replace("你大爷的","****"); 35 System.out.println(lang2);//会不会玩呀!****!****!****! 36 } 37 }
这篇关于07字符串的转换相关方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-30java最新版本是什么,有什么特性?-icode9专业技术文章分享
- 2024-11-30[开源]27.8K star!这款 Postman 替代工具太火了!
- 2024-11-30Gzip 压缩入门教程:轻松掌握文件压缩技巧
- 2024-11-29开源工具的魅力:让文档管理更“聪明”
- 2024-11-29Release-it开发入门教程
- 2024-11-29Rollup 插件入门教程:轻松掌握模块打包
- 2024-11-29从零到一,产品经理如何玩转项目管理和团队协作
- 2024-11-29如何通过精益生产管理工具帮助项目团队实现精准进度控制?
- 2024-11-29低代码应用开发课程:新手入门与基础教程
- 2024-11-29入门指南:全栈低代码开发课程