Python Rsplit () method

Source: Internet
Author: User

Describe

The Python Rsplit () method splits a string by specifying a delimiter and returns a list with the default delimiter of all null characters, including spaces, line breaks (\ n), tabs (\ t), and so on. Similar to the split () method, except that the split begins at the end of the string.

Grammar

Rsplit () method syntax:

S.rsplit ([Sep=none][,count=s.count (Sep)])
Parameters
    • Sep--optional parameter, specified delimiter, default to all null characters, including spaces, newline (\ n), tab (\ t), and so on.
    • Count--optional parameter, number of splits, default to the total number of occurrences of the delimiter in the string.
return value

Returns the segmented list of strings.

Instance

The following example shows how the Rsplit () method is used:

#!/usr/bin/python3s = "This is string EXAMPLE....WOW!!!" Print (S.rsplit ()) Print (S.rsplit (' I ', 1)) Print (S.rsplit (' W '))

The result of the above example output is as follows:

[' This ', ' is ', ' string ', ' EXAMPLE....WOW!!! '] [' This is str ', ' ng example....wow!!! '] [' This is string example .... ', ' o ', '!!! ']

Python Rsplit () method

Related Article

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.