split()

차노·2023년 7월 30일
0

JS

목록 보기
1/96

The split() method takes a pattern and divides a String into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.

문자열을 표현식대로 element화 하여 return 합니다. 첫번째는 띄어쓰기를 통해 9개의 앨러먼트를 만들어냈고, 3 번째 요소인 fox가 출력되었다.
두번쨰는, 하나의 string화 하여 8 번째 index의 k가 출력이 되었다. 세 번째는, 그대로 출력되었다.

Syntax

split(separator)
split(separator, limit)

Parameters

separator

In Javascript, 'split()' method is a built-in method available on string objects.

자바스크립트에서, 스플리트 메소드는 스트링 객체에 사용되는 내장 메소드 이다.

It is used to split a string into an array of substrings based on a specified separator.

특정 separator에 기반하여 서브스트링의 배열에 스트링을 나눌 때 사용된다.

The separator can be a string or a regular expression that defines where to split the original string.

기존의 스트링을 어디에 나눌 것인지를 정의하는 정규 표현 또는 스트링이 될 수 있다.

Syntax

  • string: The original string that you want to split.

    나누고자 하는 기존 스트링.

  • separator: The separator string or regular expression pattern at which to split the string.

    스트링을 나누고자 하는 정규 표현 패턴 또는 separator.

If omitted, the entire string will be treated as a single element in the resulting array.

생략될 경우, 전체 스트링은 결과 배열에 싱글 요소로 취급된다.

  • limit: An optional parameter that specifies the maximum number of substrings to include in the resulting array.

    결과 배열을 포함하는 서버스트링의 최대 수를 특징직는 선택적 파라미터.

Any excess substrings are discarded.

초과되는 서브스트링은 버려진다.

If omitted, the entire string will be split into all possible substrings.

생략될 경우, 전체 스트링은 가능한 모든 서브스트링에 나눠진다.

Example

In the first example, the 'split(" ")' call splits the sentence into words using the space character as the separator, resulting in an array of individual words.

첫 번째 예에서, 'split(" ")' 콜은 separator로서 스페이스 캐릭터를 사용하여 문장을 단어로 쪼갰고, 각각의 단어 배열이 만들어졌다.

In the second example, the 'split(",")' call splits the comma-separated string into individual fruits using the comma as the separator, resulting in an array of fruit names.

두 번째 예에서, 스플릿 콜은 separator로서 쉼표를 사용하여 콤마로 분리된 스트링을 각각의 과일로 쪼갰고, 과일 이름의 배열이 만들어졌다.

Conclusion

The 'split()' method is particularly useful when you need to break down a string into smaller components for further processing, manipulation, or analysis.

더 나아가 분석, 조작, 절차진행을 위해서 더 작은 요소로 스트링을 분해할 때 특히 유용한다.

I brought them back by asking chat Gpt about this method.

0개의 댓글