JavaScript substring() 方法

來源:互聯網
上載者:User
文章目錄
  • 文法
  • 傳回值
  • 說明
  • 例子 1
  • 例子 2
定義和用法

substring() 方法用於提取字串中介於兩個指定下標之間的字元。

文法
stringObject.substring(start,stop)
參數
start : 必需。一個非負的整數,規定要提取的子串在第一個字元在 stringObject 中的位置。
stop :可選。一個非負的整數,比要提取的子串的最後一個字元在 stringObject 中的位置多 1。如果省略該參數,那麼返回的子串會一直到字串的結尾。
傳回值

一個新的字串,該字串值包含 stringObject 的一個子字串,其內容是從 start 處到 stop-1 處的所有字元,其長度為 stop 減 start。

說明

substring() 方法返回的子串包括 start 處的字元,但不包括 end 處的字元。

如果參數 start 與 end 相等,那麼該方法返回的就是一個空串(即長度為 0 的字串)。如果 start 比 end 大,那麼該方法在提取子串之前會先交換這兩個參數。

提示和注釋

重要事項:與 slice() 和 substr() 方法不同的是,substring() 不接受負的參數。

執行個體例子 1

在本例中,我們將使用 substring() 從字串中提取一些字元:

<script type="text/javascript">var str="Hello world!"document.write(str.substring(3))</script>

輸出:

lo world!
例子 2

在本例中,我們將使用 substring() 從字串中提取一些字元:

<script type="text/javascript">var str="Hello world!"document.write(str.substring(3,7))</script>

輸出:

lo w
TIY
substring()
如何使用 substring() 從字串中提取一些字元。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.