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.
こんにちは、Java 分割について質問があります
ItemName,Item,,(width,length,height),12
String[] をこれに等しくしたい」
String[] result ={"ItemName","Item","","(width,length,height)","12"};
分割関数やその他の正規表現の使用を手伝ってくれるのは誰ですか?
これを試して
String data="ItemName,Item,,(width,length,height),12"; String[] result=data.split("//,"); for(String string : result) { System.out.println(string); }