함수 array merge()

Jmnote (토론 | 기여)님의 2015년 4월 12일 (일) 15:03 판 (Jmnote 사용자가 함수 array merge 문서를 함수 array merge() 문서로 옮겼습니다)
array_merge
+

1 Bash

ARR1=("John Smith" "Jane Doe")
ARR2=("Mike Barnes" "Kevin Patterson")
MERGED=("${ARR1[@]}" "${ARR2[@]}")
for VALUE in "${MERGED[@]}"; do echo "[$VALUE]"; done
# [John Smith]
# [Jane Doe]
# [Mike Barnes]
# [Kevin Patterson]
ARR1=("John Smith" "Jane Doe")
ARR2=("Mike Barnes" "Kevin Patterson")
MERGED=("${ARR1[@]}")
MERGED+=("${ARR2[@]}")
for VALUE in "${MERGED[@]}"; do echo "[$VALUE]"; done

2 PHP

$arr1 = array('a', 'b');
$arr2 = array('c', 'd');
$merged = array_merge($arr1, $arr2);
print_r($merged);
// Array
// (
//     [0] => a
//     [1] => b
//     [2] => c
//     [3] => d
// )

3 Python

a = ['Apple', 'Banana']
b = ['Cranberry', 'Pear']
c = a + b
print( c )
# ['Apple', 'Banana', 'Cranberry', 'Pear']

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}