Python index()方法:檢測字符串中是否包含某子串


同 find() 方法類似,index() 方法也可以用於檢索是否包含指定的字符串,不同之處在於,當指定的字符串不存在時,index() 方法會拋出異常。

index() 方法的語法格式如下:

str.index(sub[,start[,end]])

此格式中各參數的含義分別是:

  1. str:表示原字符串;
  2. sub:表示要檢索的子字符串;
  3. start:表示檢索開始的起始位置,如果不指定,默認從頭開始檢索;https://www.furuihua.cn/shenzhen/dapeng/
  4. end:表示檢索的結束位置,如果不指定,默認一直檢索到結尾。


【例 1】用 index() 方法檢索“c.biancheng.net”中首次出現“.”的位置索引。

>>> str = "c.biancheng.net"
>>> str.index('.')
1


【例 2】當檢索失敗時,index()會拋出異常。

>>> str = "c.biancheng.net"
>>> str.index('z')
Traceback (most recent call last):
  File "<pyshell#49>", line 1, in <module>
    str.index('z')
ValueError: substring not found


同 find() 和 rfind() 一樣,字符串變量還具有 rindex() 方法,其作用和 index() 方法類似,不同之處在於它是從右邊開始檢索,例如:

>>> str = "c.biancheng.net"
>>> str.rindex('.')
11


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM