A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class Test5
{

    /**
     * 将字符串变成字符串数组(字符串的切割)
    String[] split(String regex);涉及到正则表达式。
     */
    public static void main(String[] args)
    {
       String  s = "德玛西亚,诺克萨斯,班德尔城,水晶之衡";
       //切割字符串 s ,获得一个字符串数组s1
       String[] s1  = s.split(",");

      //遍历字符串数组
       for(int i =0 ;i<s1.length;i++) {
           System.out.println(s1[i]);
       }
       //将字符串变为字符数组char[] toCharArray();
       char[] ch = s.toCharArray();
       //遍历字符数组
       for (int i = 0; i < ch.length; i++){
        System.out.print(ch[i]+" ");
    }
       System.out.println();
       //将字符串变成字节数组byte[] getBytes()
       //使用平台的默认字符集将此 String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中。
       byte[] bytes = s.getBytes();
       for (int i = 0; i < bytes.length; i++){
        System.out.print(bytes[i]+" ");
    }
    }
      
    }

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马