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にこのようなものはありますか?
NSString *myString = [myArray componentsJoinedByString:@", "];
出力の例を次に示します。
A, B, C, D
そうでない場合、これを達成するための最良の方法は何ですか?
使用TextUtils.join():
TextUtils.join()
String myArray[] = new String[]{ "A", "B", "C", "D" }; String myString = TextUtils.join(", ", myArray);
のようなものに参加する必要がある場合にを取るバージョン(同じ構文) もあります。IterableArrayList
Iterable
ArrayList