Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰かが私が文字列を取得し、インデックスのセットを渡すことによってこれをN個に分割するのを手伝ってもらえますか...
例えば
インデックスのセット=(0,3,7,10);
そして、これらのインデックスによって文字列にブレーキをかけます
どうやってやるの?
ありがとう
ループでやってみます。
for (int i = 0; i < indexes.length; i++) { if (i == indexes.length -1) { string.substring(indexes[i]); } else { string.substring(indexes[i], indexes[i+1]); } }
部分文字列を適切なコンテナー (リストまたは配列、場合によって) にキャプチャする