How to Use rfind () in Python

Source: Internet
Author: User

How to Use rfind () in Python

This article describes how to use the rfind () method in Python. It is a basic knowledge of getting started with Python. For more information, see

The rfind () method returns the last index or-1 found in the sub-str. If no such index exists, you can select to restrict the search string [beg: end].

Syntax

The syntax of the rfind () method is as follows:

?

1

Str. rfind (str, beg = 0 end = len (string ))

Parameters

Str -- this option specifies the string to be searched

Beg -- this is the start index. The default value is 0.

End -- this is the end index. By default, it is equal to the length of the string.

Return Value

If this method is found, the last index is returned. Otherwise,-1 is returned.

Example

The following example shows how to use the rfind () method.

?

1

2

3

4

5

6

7

8

9

10

11

12

#! /Usr/bin/python

 

Str = "this is really a string example... wow !!! ";

Str = "is ";

 

Print str. rfind (str );

Print str. rfind (str, 0, 10 );

Print str. rfind (str, 10, 0 );

 

Print str. find (str );

Print str. find (str, 0, 10 );

Print str. find (str, 10, 0 );

When we run the above program, it will produce the following results:

?

1

2

3

4

5

6

5

5

-1

2

2

-1

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.