zoukankan      html  css  js  c++  java
  • Python String find()

    The find() method returns the lowest index of the substring if it is found in given string. If its is not found then it returns -1.

    Syntax :

    str.find(sub,start,end)

    Parameters :

    sub : It’s the substring which needs to be searched in the given string.
    start : Starting position where sub is needs to be checked within the string.
    end : Ending position where suffix is needs to be checked within the string.

    NOTE : If start and end indexes are not provided then by default it takes 0 and length-1 as starting and ending indexes where ending indxes is not included in our search.

    Returns:

    returns the lowest index of the substring if it is found in given string. If it’s not found then it returns -1.

    The find() method is similar to index(). The only difference is find() returns -1 if searched string is not found and index() throws an exception in this case.

  • 相关阅读:
    国际组织
    波段
    hhgis驱动
    百度地图格式
    气象数据格式
    汽车用传感器
    无线传感器网络
    【系统软件工程师面试】7. 消息队列
    【ToDo】存储设计概述
    Arthas: Java 动态追踪技术
  • 原文地址:https://www.cnblogs.com/LilyLiya/p/14815731.html
Copyright © 2011-2022 走看看