日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

JavaScript中的String substring()方法和示例

發布時間:2023/12/1 javascript 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JavaScript中的String substring()方法和示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

JavaScript | 字符串substring()方法 (JavaScript | String substring() Method)

The String.substring() method in JavaScript is used to return a part of the string. The substring() extracted is from the given start and end index of the string.

JavaScript中的String.substring()方法用于返回字符串的一部分。 提取的substring()來自給定的字符串開始和結束索引。

Syntax:

句法:

string.substring(startIndex, endIndex);

Parameter(s):

參數:

The method accepts two parameters, they are the starting and ending index of the substring string which is to be extracted.

該方法接受兩個參數,它們是要提取的子字符串字符串的開始和結束索引。

Return value:

返回值:

The return type of this method is string which is the substring output of the given string.

此方法的返回類型是string ,它是給定字符串的子字符串輸出。

Browser support: Chrome, Internet explorer, Mozilla, Safari, Opera mini.

瀏覽器支持: Chrome,Internet Explorer,Mozilla,Safari,Opera mini。

Example 1:

范例1:

<script>document.write("Hello".substring(1,3) + "<br/>");document.write("Hello".substring(0,2) + "<br/>");document.write("Hello".substring(0,5) + "<br/>");document.write("Hello".substring(0,8) + "<br/>"); //no errordocument.write("Hello World!".substring(6,12) + "<br/>"); </script>

Output

輸出量

el He Hello Hello World!

Example 2:

范例2:

<script>str = "www.includehelp.com";document.write(str.substring(0,3) + "<br/>");document.write(str.substring(4,15) + "<br/>");document.write(str.substring(16,19) + "<br/>");document.write(str.substring(0) + "<br/>");document.write(str.substring(4) + "<br/>");document.write(str.substring(16) + "<br/>"); </script>

Output

輸出量

www includehelp com www.includehelp.com includehelp.com com

翻譯自: https://www.includehelp.com/code-snippets/string-substring-method-with-example-in-javascript.aspx

總結

以上是生活随笔為你收集整理的JavaScript中的String substring()方法和示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。