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.
このデータを別々の部分に分割しようとしていますが、唯一の問題は、各値の間の空白が同じではないことです。例えば:
2010 1 5.1 0.9 11 55.4 86.1#
何か案は?
String[] values = input.split("\\s+");
ロルフ
文字列をトークン化し、空白を削除します。これが宿題である場合に備えて、実装はあなたに任せます。