diff options
author | Isa(yunjongryu) <yunjonglyu@gmail.com> | 2021-07-29 10:16:58 +0900 |
---|---|---|
committer | Kyle <mkitigy@gmail.com> | 2021-08-02 23:59:12 +0900 |
commit | 5163b0ac5f836de388b6395fdbdc3605aa9ff422 (patch) | |
tree | 3c4f12e2a9cf2273e37090aaf050b1a25d17f106 /files | |
parent | 6f3d7ff69bf779389db1ec44200ccc7af5454862 (diff) | |
download | translated-content-5163b0ac5f836de388b6395fdbdc3605aa9ff422.tar.gz translated-content-5163b0ac5f836de388b6395fdbdc3605aa9ff422.tar.bz2 translated-content-5163b0ac5f836de388b6395fdbdc3605aa9ff422.zip |
fix(KO): JS REF - STRING TRIM 번역 최신화 & CONVERT MD
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/web/javascript/reference/global_objects/string/trim/index.md | 100 |
1 files changed, 37 insertions, 63 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/string/trim/index.md b/files/ko/web/javascript/reference/global_objects/string/trim/index.md index 32c3607a1f..dc9ed00b9a 100644 --- a/files/ko/web/javascript/reference/global_objects/string/trim/index.md +++ b/files/ko/web/javascript/reference/global_objects/string/trim/index.md @@ -10,86 +10,60 @@ tags: - String translation_of: Web/JavaScript/Reference/Global_Objects/String/Trim --- -<div>{{JSRef}}</div> +{{JSRef}} -<p><strong><code>trim()</code></strong> 메서드는 문자열 양 끝의 공백을 제거합니다. 공백이란 모든 공백문자(space, tab, NBSP 등)와 모든 개행문자(LF, CR 등)를 의미합니다.</p> +**`trim()`** 메서드는 문자열 양 끝의 공백을 제거합니다. +공백이란 모든 공백문자(space, tab, NBSP 등)와 모든 개행문자(LF, CR 등)를 의미합니다. -<div>{{EmbedInteractiveExample("pages/js/string-trim.html")}}</div> +{{EmbedInteractiveExample("pages/js/string-trim.html")}} +## 구문 +```js +trim() +``` -<h2 id="구문">구문</h2> +### 반환 값 -<pre class="syntaxbox"><var>str</var>.trim()</pre> +`str` 문자열의 양끝의 공백을 제거한 문자열을 반환합니다. -<h3 id="반환_값">반환 값</h3> +`str` 문자열에 공백이 없어도 예외가 발생하지 않고 새 문자열이 반환됩니다. (본질적으로 `str`의 복사본). -<p>양 끝에서 공백을 제거한 새로운 문자열.</p> +한쪽 끝의 공백만 제거한 문자열을 반환하시려면 {{jsxref("String.prototype.trimStart()", "trimStart()")}} 또는 {{jsxref("String.prototype.trimEnd()", "trimEnd()")}} 메서드를 사용하세요. -<h2 id="설명">설명</h2> +## 폴리필 -<p><code>trim()</code> 메서드는 양끝의 공백을 제거한 문자열을 반환합니다. <code>trim()</code>은 원본 문자열에는 영향을 주지 않습니다. </p> +다른 코드 전에 아래 코드를 실행하면 지원하지 않는 환경에서도 `trim()` 을 사용할 수 있습니다. -<h2 id="예제">예제</h2> +```js +if (!String.prototype.trim) { + String.prototype.trim = function () { + return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + }; +} +``` + +## 예제 -<h3 id="trim()_사용"><code>trim()</code> 사용</h3> +### `trim()` 사용 -<p>아래의 예제는 소문자 문자열 <code>'foo'</code>를 표시합니다.</p> +아래의 예제는 소문자 문자열 `'foo'` 를 표시합니다. -<pre class="brush: js">var orig = ' foo '; +```js +var orig = ' foo '; console.log(orig.trim()); // 'foo' +``` -// 한 쪽의 공백만 제거하는 .trim() 예제 +## 명세 -var orig = 'foo '; -console.log(orig.trim()); // 'foo' -</pre> +{{Specifications}} -<h2 id="폴리필">폴리필</h2> +## 브라우저 호환성 -<p>다른 코드 전에 아래 코드를 실행하면 지원하지 않는 환경에서도 <code>String.trim()</code> 을 사용할 수 있습니다.</p> +{{Compat}} -<pre class="brush: js">if (!String.prototype.trim) { - String.prototype.trim = function () { - return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); - }; -} -</pre> - -<h2 id="명세">명세</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">표준</th> - <th scope="col">상태</th> - <th scope="col">비고</th> - </tr> - <tr> - <td>{{SpecName('ES5.1', '#sec-15.5.4.20', 'String.prototype.trim')}}</td> - <td>{{Spec2('ES5.1')}}</td> - <td>Initial definition. Implemented in JavaScript 1.8.1.</td> - </tr> - <tr> - <td>{{SpecName('ES6', '#sec-string.prototype.trim', 'String.prototype.trim')}}</td> - <td>{{Spec2('ES6')}}</td> - <td> </td> - </tr> - <tr> - <td>{{SpecName('ESDraft', '#sec-string.prototype.trim', 'String.prototype.trim')}}</td> - <td>{{Spec2('ESDraft')}}</td> - <td> </td> - </tr> - </tbody> -</table> - -<h2 id="브라우저_호환성">브라우저 호환성</h2> - -<p>{{Compat("javascript.builtins.String.trim")}}</p> - -<h2 id="참조">참조</h2> - -<ul> - <li>{{jsxref("String.prototype.trimLeft()")}} {{non-standard_inline}}</li> - <li>{{jsxref("String.prototype.trimRight()")}} {{non-standard_inline}}</li> -</ul> +## 같이 보기 + +- `String.prototype.trim` 의 폴리필은 여기를 [`core-js`](https://github.com/zloirock/core-js#ecmascript-string-and-regexp) 참고 하세요. +- {{jsxref("String.prototype.trimStart()")}} +- {{jsxref("String.prototype.trimEnd()")}} |