Click the button to display the array values after the split
=====Definition and Usage=====
%%split()%% 메서드는 문자열(string)을 하위 문자열(substring) 배열로 분리하는 데 사용되며, 새 배열을 반환합니다.\\
\\
**Tip:** 빈 문자열 (" ")이 구분자(separator)로 사용되는 경우, 문자열은 각 문자로 분리됩니다.\\
\\
**Note:** **split()** 메서드는 원래 문자열을 변경하지 않습니다.\\
====Syntax====
string.split(separator, limit)
====Parameter Values====
^ Parameter ^ Description ^
| separator | 선택 가능. 문자 또는 정규표현식을 사용하여 문자열(string)을 분리하기 위해 사용. 생략하게 되면 전체 문자열이 반환됩니다.(단일 항목만 가진 배열) |
| limit | 선택 가능. splits 수를지정하는 정수, split 제한 이후의 항목은 배열에 포함되지 않습니다. |
====Return Value====
분리된 값을 포함하는 배열(An Array, containing the splitted values)을 반환합니다.\\
====More Examples====
구분자 매개변수(separator parameter)를 생략하여, 문장 전체가 반환됩니다.\\
Click the button to display the array value after the split
====Example====
공백(white-space)을 포함하여 각각의 철자 배열로 분리&반환합니다.\\
Click the button to display the array value after the split.
====Example====
제한 매개변수(limit parameter)를 사용합니다.\\
Click the button to display the array values after the split.
====Example====
철자(letter)를 구분자로 사용하기
Click the button to display the array values after the split.
\\
{{tag>오션 Javascript String split() Method}}