substr関数とsubstring関数は、どちらも特定の「親文字列」から「部分文字列」を抽出するために使用される関数です。ただし、使用法にはいくつかの違いがあります。
メソッドは、sub を返すために使用されます。 - 指定された位置から始まる指定された長さの文字。構文
stringObject.substr(start [, length])
パラメータ 説明
start 必須。目的の部分文字列の開始位置。文字列の最初の文字のインデックスは 0 です。
長さはオプションです。返される部分文字列に含める必要がある文字数。
説明
start が負の数の場合、start=str.length start になります。
長さが 0 または負の場合、空の文字列が返されます。
このパラメータが指定されていない場合、部分文字列は stringObject の最後まで継続されます。
機能:「親文字列」の「指定位置」から「指定長さ」の「部分文字列」を抽出します。
使用法:
コードをコピー
コードをコピー
//番号 2 の文字から最後の文字までの部分文字列。 戻り値: "水道水は海から来ています"
コードをコピー
コードをコピー
コードは次のとおりです。
alert(str.substring(-12));----------"0123456789"
alert(str.substring(0,5));---- ------"01234"
alert(str.substring(0,10));---------"0123456789"
alert(str.substring(0,12)) ;---------- -"0123456789"
alert(str.substring(2,0));----------"01"
alert(str.substring( 2,2));--- -------""
alert(str.substring(2,5));----------"234"
alert (str.substring(2,12) );---------"23456789"
alert(str.substring(2,-2));---------"01 "
alert(str.substring (-1,5));--------"01234"
alert(str.substring(-1,-5));---- ----""
alert(str.substr(0));---------------"0123456789"
alert(str.substr(5) ));------ ----------"56789"
alert(str.substr(10));---------------""
alert(str.substr( 12));--------------""
alert(str.substr(-5));------ -------"56789 "
alert(str.substr(-10));-------------"0123456789"
alert(str.substr(- 12));----- --------"0123456789"
alert(str.substr(0,5));-------------"01234 "
alert(str.substr (0,10));-----------"0123456789"
alert(str.substr(0,12));---- --------" 0123456789"
alert(str.substr(2,0));-------------""
alert(str.substr( 2,2));--- ----------"23"
alert(str.substr(2,5));------------- "23456"
alert(str .substr(2,12));------------"23456789"
alert(str.substr(2,-2));- --------- --""
alert(str.substr(-1,5));------------"9"
alert(str .substr(-1,-5) );----------""
substring function
Function: Extract the "substring" from the "start position" to the "end position" from the "mother string".
Usage: String data.substring(start,end)
The start parameter specifies the position of the "first character" in the substring. The
end parameter specifies the position of the "next character" to the "last character" in the substring.
The substring function returns a substring starting from the "start position" and ending at the "end-1 position" (excluding the characters at the "end position").
The substring function uses the smaller of start and end as the starting point of the substring. For example, stringdata.substring(0,3) and stringdata.substring(3,0) will return the same substring.
If start or end is NaN or negative, replace it with 0.
The length of the substring is equal to the absolute value of the difference between start and end. For example, stringdata.substring(0,3) and stringdata.substring(3,0) return a substring with a length of 3.
The following example demonstrates the use of the substring function.
Example
[Ctrl A Select all Note: If you need to introduce external Js, you need to refresh to execute
2) If If startIndex and endIndex are equal, an empty string will be returned. If startIndex is larger than endIndex, swap the two parameters before extracting the substring. That is, stringObject.substring(startIndex, endIndex) is equivalent to stringObject.substring(endIndex, startIndex)
The code is as follows :
var stringObject = "hello world!";
alert(stringObject.substring(3,3)); // Empty string
alert(stringObject.substring(3,7) )); // lo w
alert(stringObject.substring(7,3)); // lo w
The code is as follows:
Mother string = "Shanghai tap water comes from the sea";
Substring = Mother string.substring(2,4);
//The substring starting from the character "numbered 2" and ending with the character "numbered (4-1)". Return value: "自来"
substr() can be used instead of substring(). From the above code, we can see that stringObject.substr(3,4) is equivalent to stringObject. substring(3,7)

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

MantisBT
Mantis は、製品の欠陥追跡を支援するために設計された、導入が簡単な Web ベースの欠陥追跡ツールです。 PHP、MySQL、Web サーバーが必要です。デモおよびホスティング サービスをチェックしてください。

VSCode Windows 64 ビットのダウンロード
Microsoft によって発売された無料で強力な IDE エディター

Dreamweaver Mac版
ビジュアル Web 開発ツール

SublimeText3 英語版
推奨: Win バージョン、コードプロンプトをサポート!

メモ帳++7.3.1
使いやすく無料のコードエディター
