-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,63 @@ | ||
--- | ||
title: TextEncoder.prototype.encode() | ||
title: TextEncode.encode() | ||
slug: Web/API/TextEncoder/encode | ||
tags: | ||
- API | ||
- Encoding | ||
- Method | ||
- Reference | ||
- エンコーディング | ||
- メソッド | ||
- リファレンス | ||
- TextEncoder | ||
- encode | ||
browser-compat: api.TextEncoder.encode | ||
translation_of: Web/API/TextEncoder/encode | ||
--- | ||
<p>{{APIRef("Encoding API")}}</p> | ||
{{APIRef("Encoding API")}} | ||
|
||
<p><strong><code>TextEncoder.prototype.encode()</code></strong> メソッドは入力として1つの {{domxref("USVString")}} を取り、引数で与えられたテキストが <code>TextEncoder</code> オブジェクトで指定されたメソッドでエンコードされたものが入った {{jsxref("Global_Objects/Uint8Array", "Uint8Array")}} を返します。</p> | ||
**`TextEncoder.encode()`** メソッドは入力として文字列を取り、 {{jsxref("Global_Objects/Uint8Array", "Uint8Array")}} に引数で与えられたテキストが {{domxref("TextEncoder")}} オブジェクトで指定された方法でエンコードされたものが入ったものを返します。 | ||
|
||
<h2 id="Syntax" name="Syntax">構文</h2> | ||
## 構文 | ||
|
||
<pre class="syntaxbox notranslate"><var>b1</var> = <var>encoder</var>.encode(<var>string</var>); | ||
</pre> | ||
```js | ||
encode(string) | ||
``` | ||
|
||
<h3 id="Parameters" name="Parameters">引数</h3> | ||
### 引数 | ||
|
||
<dl> | ||
<dt><code><var>string</var></code></dt> | ||
<dd>エンコードするテキストが入った {{DOMxRef("USVString")}} です。</dd> | ||
</dl> | ||
- `string` | ||
- : エンコードするテキストが入った文字列です。 | ||
|
||
<h3 id="Return_value" name="Return_value">返値</h3> | ||
### 返値 | ||
|
||
<p>{{domxref("Uint8Array")}} オブジェクト。</p> | ||
{{jsxref("Uint8Array")}} オブジェクトです。 | ||
|
||
<h2 id="Examples" name="Examples">例</h2> | ||
## 例 | ||
|
||
<pre class="brush: html notranslate"><p class="source">This is a sample paragraph.</p> | ||
<p class="result">Encoded result: </p></pre> | ||
```html | ||
<p class="source">This is a sample paragraph.</p> | ||
<p class="result">Encoded result: </p> | ||
``` | ||
|
||
<pre class="brush: js notranslate">const sourcePara = document.querySelector('.source'); | ||
```js | ||
const sourcePara = document.querySelector('.source'); | ||
const resultPara = document.querySelector('.result'); | ||
const string = sourcePara.textContent; | ||
|
||
const textEncoder = new TextEncoder(); | ||
|
||
let encoded = textEncoder.encode(string); | ||
resultPara.textContent += encoded;</pre> | ||
|
||
<p>{{EmbedLiveSample('Examples')}}</p> | ||
|
||
<h2 id="Specifications" name="Specifications">仕様書</h2> | ||
|
||
<table class="standard-table"> | ||
<tbody> | ||
<tr> | ||
<th scope="col">仕様書</th> | ||
<th scope="col">状態</th> | ||
<th scope="col">備考</th> | ||
</tr> | ||
<tr> | ||
<td>{{SpecName("Encoding", "#dom-textencoder-encode", "TextEncoder.prototype.encode()")}}</td> | ||
<td>{{Spec2("Encoding")}}</td> | ||
<td>初回定義</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> | ||
|
||
<div> | ||
<p>{{Compat("api.TextEncoder.encode")}}</p> | ||
</div> | ||
|
||
<h2 id="See_also" name="See_also">関連情報</h2> | ||
|
||
<ul> | ||
<li>所属する {{DOMxRef("TextEncoder")}} インターフェイス</li> | ||
</ul> | ||
resultPara.textContent += encoded; | ||
``` | ||
|
||
{{EmbedLiveSample('Examples')}} | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat}} | ||
|
||
## 関連情報 | ||
|
||
- 所属先の {{DOMxRef("TextEncoder")}} インターフェイス。 |