find() python

來源:互聯網
上載者:User

標籤:find   blog   int   info   子串   www   預設值   雲端   /usr   

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

描述
find() 方法檢測字串中是否包含子字串 str ,如果指定 beg(開始) 和 end(結束) 範圍,則檢查是否包含在指定範圍內,如果指定範圍內如果包含指定索引值,返回的是索引值在字串中的起始位置。如果不包含索引值,返回-1。

文法

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

參數

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

傳回值

如果找到子字串則返回開始索引,否則返回-1

執行個體

範例程式碼:

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

返回:

7

7

-1

>>>info = ‘abca‘>>> print(info.find(‘a‘))      # 從下標0開始,尋找在字串裡第一個出現的子串,返回結果:00>>> print(info.find(‘a‘, 1))   # 從下標1開始,尋找在字串裡第一個出現的子串:返回結果33>>> print(info.find(‘3‘))      # 尋找不到返回-1-1>>>

find() 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.