首页 python基础教程 Python字符串的分割split()和合并join()
pay pay
教程目录

Python字符串的分割split()和合并join()

日期: 二月 13, 2023, 5:15 a.m.
栏目: python基础教程
阅读: 1060
作者: Python自学网-村长

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

字符串中有很多可以使用的函数,本章来讲解一下字符串的分割和合并,首先是分割字符串,使用到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

部分文字内容为【Python自学网】原创作品,转载请注明出处!视频内容已申请版权,切勿转载!
回顶部