index() python

來源:互聯網
上載者:User

標籤:sub   ora   傳回值   字串   print   描述   指定   string   erro   

歡迎關注本人部落格:雲端築夢師

描述

index() 方法檢測字串中是否包含子字串 str ,如果指定 beg(開始) 和 end(結束) 範圍,則檢查是否包含在指定範圍內,該方法與 python find()方法一樣,只不過如果str不在 string中會報一個異常。

文法

str.index(str, beg=0, end=len(string))

參數

  • str -- 指定要檢索的字串
  • beg -- 起始索引,預設為0
  • end -- 結束索引,預設為字串長度

傳回值

如果子字串存在則返回第一個索引,否則報錯

執行個體

範例程式碼:

#!/usr/bin/python3str1 = "Runoob example....wow!!!"str2 = "exam";print (str1.index(str2))print (str1.index(str2, 5))print (str1.index(str2, 10))

輸出:

77Traceback (most recent call last):  File "test.py", line 8, in <module>    print (str1.index(str2, 10))ValueError: substring not found

index() python

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.