
字符串中有很多可以使用的函数,本章来讲解一下字符串的分割和合并,首先是分割字符串,使用到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原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。