JAVA关于将一个字符串拆分成一个字符串数组的方法

2024-11-07 16:46:26
推荐回答(4个)
回答(1):

用mid方法
Mid(string, start[, length])
参数
string:字符串表达式,从中返回字符。如果 string 包含 Null,则返回 Null。
Start:string 中被提取的字符部分的开始位置。如果 start 超过了 string 中字符的数目,Mid 将返回零长度字符串 ("")。
Length:要返回的字符数。如果省略或 length 超过文本的字符数(包括 start 处的字符),将返回字符串中从 start 到字符串结束的所有字符。
如:Dim MyVar
MyVar = Mid("VB脚本is fun!", 4, 6) 'MyVar 包含 "Script"。

st=Mid(str,1,1)

回答(2):

char[] toCharArray() 将此字符串转换为一个新的字符数组。

回答(3):

  1. 如果是带分隔符的就用split方法

  2. 不带分隔符


    public static void main(String[] args) {
     
            
             String temp = "1100011";
             int[] itemp = new int[temp.length()];
             for (int i = 0; i < temp.length(); i++) {
              itemp[i] = Integer.parseInt(temp.substring(i, i+1));
     }
             for (int i = 0; i < itemp.length; i++) {
    System.out.println(itemp[i]+"");
    }


    }

回答(4):

因为你在split中没有定义分割符,会默认空格作为分割符,第一项就会是个空格。