【100+ python基础入门-15】字符串的分割和合并

导读:本篇文章讲解 【100+ python基础入门-15】字符串的分割和合并,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

字符串中有很多可以使用的函数,本章来讲解一下字符串的分割和合并,首先是分割字符串,使用到split()函数,合并字符串的时候使用的join()函数。下面我们就来一一讲解一下。

一、字符串分割

使用split()函数来分割字符串的时候,先看看构造方法。

def split(self, *args, **kwargs): # real signature unknown

    """

    Return a list of the words in the string, using sep as the delimiter string.

    

      sep

        The delimiter according which to split the string.

        None (the default value) means split according to any whitespace,

        and discard empty strings from the result.

      maxsplit

        Maximum number of splits to do.

        -1 (the default value) means no limit.

    """

    pass

这里面可以传很多类型参数,但是我们主要讲两个str.split(sep,maxsplit),sep是分割符,指的是按照什么字符来分割字符串,maxsplit表示把字符串分割成几段。下面来看看代码。

website = 'http://www.wakey.com.cn/'print(website.split('.', -1))  

# 按照字符串中的.来分割,不限次数print(website.split('.', 2))  

#按照字符串中的.来分割,分割成3份print(website.split('w', 5))  

#按照字符串中的w来分割,分割成6份

返回结果:

['http://www', 'wakey', 'com', 'cn/']
['http://www', 'wakey', 'com.cn/']
['http://', '', '', '.', 'akey.com.cn/']

二、字符串合并

字符串合并在日后的开发中会经常用到,下面我们先来看看字符串合并函数join()的构造。

def join(self, ab=None, pq=None, rs=None): # real signature unknown; restored from __doc__

    """

    Concatenate any number of strings.

    

    The string whose method is called is inserted in between each given string.

    The result is returned as a new string.

    

    Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'

    """

    pass

看了构造就知道函数内需要传入可迭代对象,所以我们先传入一个列表演示一下。

website = '.'

list = ['www', 'wakey', 'com', 'cn']print('http://' + website.join(list))

返回结果:http://www.wakey.com.cn

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/73458.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!