一連のchar値を持つencodedというchar配列があります。配列の中央に3文字を挿入し、残りの文字を次のスペースにプッシュして保持したいと思います。これは可能ですか?
次のように使用したコードの一部は、次の2つの文字も挿入して置き換えます。
encoded = new char[20];
encoded = encodeArray.toCharArray();
for (int x = 0; x < encoded.length; x++) {
if (encoded[x] == a) {
encoded[x] = amp;
} if (encoded[x] == und) {
for (int y = 0; y < 3; y++) {
encoded[x+y] = tilde;
}
}
}
どんな方向でも大歓迎です。