"함수 implode()"의 두 판 사이의 차이

88번째 줄: 88번째 줄:
print( " + ".join(lst) )
print( " + ".join(lst) )
# Apple + Banana + Mango + Orange
# Apple + Banana + Mango + Orange
</source>
<source lang='Python'>
nums = [1,2,3,4]
print( " ".join(map(str,nums)) )
# 1 2 3 4
</source>
</source>



2018년 7월 15일 (일) 16:55 판

  다른 뜻에 대해서는 Join 문서를 참조하십시오.

1 개요

implode
join

2 Bash

ARR=("John Smith" "Jane Doe" "Mike Barnes" "Kevin Patterson")
STR=$(printf ";%s" "${ARR[@]}")
STR=${STR:1}
echo $STR
# John Smith;Jane Doe;Mike Barnes;Kevin Patterson

3 C#

string[] arr = { "a", "b", "c" };
string str = string.Join("-", arr);
// a-b-c

4 Java

System.out.println( String.join(" - ", "Alice", "Bob", "Carol") );
// Alice - Bob - Carol
System.out.println( String.join(" - ", new String[] {"Alice", "Bob", "Carol"}) );
// Alice - Bob - Carol
System.out.println( String.join(" - ", Arrays.asList("Alice", "Bob", "Carol")) );
// Alice - Bob - Carol
String[] strs = {"Alice", "Bob", "Carol"};
System.out.println( String.join(" - ", strs) );
// Alice - Bob - Carol
List<String> strs = Arrays.asList("Alice", "Bob", "Carol");
System.out.println( String.join(" - ", strs) );
// Alice - Bob - Carol

5 JavaScript

["a", "b", "c"].join("-")          //  'a-b-c'

6 Objective-C

NSArray *arr = [NSArray arrayWithObjects:@"a", @"b", @"c", nil];
NSString *str = [arr componentsJoinedByString:@"-"];       // 'a-b-c'

7 Perl

join( '-', ('a', 'b', 'c'));       # 'a-b-c'

8 PHP

$arr = array("a","b","c");
$str = implode("-", $arr);

9 Python

print( "-".join(["a", "b", "c"]) )
# a-b-c
lst = ['Apple', 'Banana', 'Mango', 'Orange']
print( " + ".join(lst) )
# Apple + Banana + Mango + Orange
nums = [1,2,3,4]
print( " ".join(map(str,nums)) )
# 1 2 3 4

10 Ruby

["a", "b", "c"].join("-")          #  'a-b-c'

11 Scheme

(use-modules (srfi srfi-13))
(string-join '("a" "b" "c") "-")   ;  "a-b-c"

12 같이 보기