如何将字符串分成相等的部分并将其存储在字符串数组中

如何将字符串分成相等的部分并将其存储在字符串数组中,第1张

如何将字符串分成相等的部分并将其存储在字符串数组中

我想到了。这是我的代码

    String[] array = new String[size];    char[] charArray = new char[length(word)];    char[] temp = new char[length(word) / size];    int place = 0;    // turn the string into an array of chars    for (int i = 0; i < charArray.length; i++) {        charArray[i] = getChar(word, i);    }    // loop for each element of the desired string array    for (int i = 0; i < array.length; i++) {        // fill a temp array with the correct characters and the corect amount of characters        for (int j = 0; j < charArray.length / size; j++) {      temp[j] = charArray[place]; ++place;        }        // insert the temp array into each element of the string array        array[i] = new String(temp);    }    return array;


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5165211.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存