How do i find a specific text in a string python?

View Discussion

Improve Article

Save Article

  • Read
  • Discuss
  • View Discussion

    Improve Article

    Save Article

    Python String find() method returns the lowest index or first occurrence of the substring if it is found in a given string. If it is not found, then it returns -1.

    Syntax: str_obj.find(sub, start, end)

    Parameters: 

    • sub: Substring that needs to be searched in the given string. 
    • start (optional): Starting position where the substring needs to be checked within the string. 
    • end (optional): End position is the index of the last value for the specified range. It is excluded while checking. 

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

    Python String find() method Example

    Python3

    word = 'geeks for geeks'

    print(word.find('for'))

    Output:

    6

    Note:

    1. If the start and end indexes are not provided then by default it takes 0 and length-1 as starting and ending indexes where ending indexes are not included in our search.
    2. The find() method is similar to index(). The only difference is find() returns -1 if the searched string is not found and index() throws an exception in this case.

    Example 1: find() With No start and end Argument

    Python3

    word = 'geeks for geeks'

    result = word.find('geeks')

    print("Substring 'geeks' found at index:", result)

    result = word.find('for')

    print("Substring 'for ' found at index:", result)

    if word.find('pawan') != -1:

        print("Contains given substring ")

    else:

        print("Doesn't contains given substring")

    Output:

    Substring 'geeks' found at index: 0
    Substring 'for ' found at index: 6
    Doesn't contains given substring

    Example 2: find() With start and end Arguments

    In this example, we have specified start and end arguments of Python String find() method. So that the given substring is searched in the mentioned portion of the original string.

    Python3

    word = 'geeks for geeks'

    print(word.find('ge', 2))

    print(word.find('geeks ', 2))

    print(word.find('g', 4, 10))

    print(word.find('for ', 4, 11))

    Output:

    10
    -1
    -1
    6

    How do i find a specific text in a string python?

    Explanation:

    • In the first statement, the output is 10 as the start value is given which is 2, so the substring is checked from the second index which is ‘eks for geeks’.
    • In the second statement, the start value is given as 2 and the substring is given ‘geeks’, so the index position of ‘geeks’ is 10 but due to the last value is being excluded it will only find ‘geek’ which doesn’t matches with the original string, that is why the output is -1.
    • In the third statement, start value=4, end value=10, and substring = ‘g’ is given, the index position from 4 will be checked for the given substring which is at position 10, which is being excluded as it is the end index.
    • In the fourth statement, start value =4, end value=11, and substring=’for’ is given, the index position from 4 till 11 will be checked for the given substring and the specified substring is present at index 6, so the output is obtained.

    How do I find a specific element in a string Python?

    Python String find() method returns the lowest index or first occurrence of the substring if it is found in a given string. If it is not found, then it returns -1.

    How do I extract specific text in Python?

    How to extract specific portions of a text file using Python.
    Make sure you're using Python 3..
    Reading data from a text file..
    Using "with open".
    Reading text files line-by-line..
    Storing text data in a variable..
    Searching text for a substring..
    Incorporating regular expressions..
    Putting it all together..