From a2ca83877ed42d70a1edc03dd24cbe61ccc1089e Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 13 Jul 2021 23:52:12 +0900 Subject: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf を更新 (#1399) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - conflicting 版はあいまいさ回避ページであるため削除 - 2021/05/05 時点の英語版に同期 --- .../global_objects/string/lastindexof/index.html | 83 ++++++++++------------ 1 file changed, 38 insertions(+), 45 deletions(-) (limited to 'files/ja/web/javascript') diff --git a/files/ja/web/javascript/reference/global_objects/string/lastindexof/index.html b/files/ja/web/javascript/reference/global_objects/string/lastindexof/index.html index 73c8f7f823..90c80353c3 100644 --- a/files/ja/web/javascript/reference/global_objects/string/lastindexof/index.html +++ b/files/ja/web/javascript/reference/global_objects/string/lastindexof/index.html @@ -2,44 +2,47 @@ title: String.prototype.lastIndexOf() slug: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf tags: - - JavaScript - - Method - - Prototype - - Reference - - String - - lastIndexOf +- JavaScript +- Method +- Prototype +- Reference +- String +- lastIndexOf +browser-compat: javascript.builtins.String.lastIndexOf translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf ---
{{JSRef}}
-

lastIndexOf() メソッドは、呼び出した {{jsxref("String")}} オブジェクトの中で、 fromIndex から前方向に検索を始め、指定された値が最後に現れたインデックスを返します。値が見つからない場合は -1 を返します。

+

lastIndexOf() メソッドは、呼び出した {{jsxref("String")}} オブジェクトの中で、 fromIndex から前方向に検索を始め、指定された値が最後に現れたインデックスを返します。値が見つからない場合は -1 を返します。

{{EmbedInteractiveExample("pages/js/string-lastindexof.html", "shorter")}}
- -

構文

+

構文

-
str.lastIndexOf(searchValue[, fromIndex])
+
+lastIndexOf(searchValue)
+lastIndexOf(searchValue, fromIndex)
+
-

引数

+

引数

-
searchValue
-
検索する値を表す文字列です。 searchValue が空文字列であった場合は、 fromIndex を返します。 -
fromIndex {{optional_inline}}
-
比較の先頭とみなされる文字列の最後の文字の位置です。既定値は +Infinity です。 fromIndex >= str.length の場合、文字列全体が検索されます。 fromIndex < 0 の場合は、 0 の場合と同じ動作になります。 -
+
searchValue
+
検索する値を表す文字列です。 searchValue が空文字列であった場合は、 fromIndex を返します。
+
fromIndex {{optional_inline}}
+
比較の先頭とみなされる文字列の最後の文字の位置です。既定値は +Infinity です。 fromIndex >= str.length の場合、文字列全体が検索されます。 fromIndex < 0 の場合は、 0 の場合と同じ動作になります。
+ -

返値

+

返値

searchValue が最後に出現した位置です。見つからなかった場合は、 -1 になります。

-

解説

+

解説

文字列における文字は左から右にインデックス化されます。一番最初の文字の位置は 0 で、一番最後の文字は str.length - 1 です。

-
'canal'.lastIndexOf('a');     // returns 3
+
'canal'.lastIndexOf('a');     // 3 を返す
 'canal'.lastIndexOf('a', 2);  // 1 を返す
 'canal'.lastIndexOf('a', 0);  // -1 を返す
 'canal'.lastIndexOf('x');     // -1 を返す
@@ -53,20 +56,20 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
 

注: 'abab'.lastIndexOf('ab', 2)2 を返し、 0 にはなりません。 fromIndex は検索の開始位置を制約するものだからです。

-

大文字と小文字の区別

+

大文字と小文字の区別

lastIndexOf() メソッドは大文字と小文字を区別します。例えば、以下の式は -1 を返します。

-
'Blue Whale, Killer Whale'.lastIndexOf('blue'); // -1 を返す
+
'Blue Whale, Killer Whale'.lastIndexOf('blue'); // -1 を返す
 
-

+

-

indexOf() と lastIndexOf() の使用

+

indexOf() と lastIndexOf() の使用

以下の例は、 {{jsxref("String.prototype.indexOf()", "indexOf()")}} と lastIndexOf() を使用して文字列 "Brave new world" の中の値の位置を示します。

-
let anyString = 'Brave new world';
+
let anyString = 'Brave new world';
 
 console.log('先頭から見て最初に w が出現する位置: ' + anyString.indexOf('w'));
 // 8 と出力
@@ -78,31 +81,21 @@ console.log('末尾から見た "new" の位置: ' + anyString.lastIndexOf('new'
 // 6 と出力
 
-

仕様書

+

仕様書

+ +{{Specifications}} - - - - - - - - - - - -
仕様書
{{SpecName('ESDraft', '#sec-string.prototype.lastindexof', 'String.prototype.lastIndexOf')}}
+

ブラウザーの互換性

-

ブラウザーの互換性

-

{{Compat("javascript.builtins.String.lastIndexOf")}}

+

{{Compat}}

-

関連情報

+

関連情報

    -
  • {{jsxref("String.prototype.charAt()")}}
  • -
  • {{jsxref("String.prototype.indexOf()")}}
  • -
  • {{jsxref("String.prototype.split()")}}
  • -
  • {{jsxref("Array.prototype.indexOf()")}}
  • -
  • {{jsxref("Array.prototype.lastIndexOf()")}}
  • +
  • {{jsxref("String.prototype.charAt()")}}
  • +
  • {{jsxref("String.prototype.indexOf()")}}
  • +
  • {{jsxref("String.prototype.split()")}}
  • +
  • {{jsxref("Array.prototype.indexOf()")}}
  • +
  • {{jsxref("Array.prototype.lastIndexOf()")}}
-- cgit v1.2.3-54-g00ecf