A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://webplatform.github.io/docs/javascript/String/lastIndexOf below:

lastIndexOf ยท WebPlatform Docs

lastIndexOf Summary

Returns the last occurrence of a substring in the string.

Syntax
strObj.lastIndexOf( substring [, startindex ] )
strObj
Required. A String object or string literal.
substring
Required. The substring to search for.
startindex
Optional. The index at which to begin searching. If omitted, the search begins at the end of the string.
Examples

The lastIndexOf method returns an integer value indicating the beginning of the substring within the String object. If the substring is not found, a -1 is returned.

If startindex is negative, startindex is treated as zero. If it is larger than the greatest character position index, it is treated as the largest possible index.

Searching is performed starting at the last character in the string. Otherwise, this method is identical to indexOf.

The following example illustrates the use of the lastIndexOf method.

var str = "time, time";

var s = "";
s += "time is at position " + str.lastIndexOf("time");
s += "<br />";
s += "abc is at position " + str.lastIndexOf("abc");

document.write(s);




See also Other articles Attributions

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4