首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >python字符串分割和合并(split()函数 / join()函数)

python字符串分割和合并(split()函数 / join()函数)

原创
作者头像
python自学网
发布2021-11-29 14:29:13
发布2021-11-29 14:29:13
2.4K0
举报

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

一、字符串分割

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

代码语言:python
复制
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表示把字符串分割成几段。下面来看看代码。

代码语言:python
复制
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()的构造。

代码语言:python
复制
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

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

代码语言:python
复制
website = '.'
list = ['www', 'wakey', 'com', 'cn']print('http://' + website.join(list))
返回结果:http://www.wakey.com.cn

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 一、字符串分割
  • 二、字符串合并
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档