Skip to content

Commit

Permalink
2022/05/10 時点の英語版に同期
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jun 6, 2022
1 parent 547ed6f commit d08020a
Showing 1 changed file with 39 additions and 52 deletions.
91 changes: 39 additions & 52 deletions files/ja/web/api/textencoder/encode/index.md
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">&lt;p class="source"&gt;This is a sample paragraph.&lt;/p&gt;
&lt;p class="result"&gt;Encoded result: &lt;/p&gt;</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")}} インターフェイス。

0 comments on commit d08020a

Please sign in to comment.