【说站】python删除str中特定字符的方法
2024-12-31
17
python删除str中特定字符的方法
1、删除字符串首尾的多余字符串strip()
# 删除字符串中多余字符 def string_remove(): str1 = ' abc \n' print str1.strip() # abc str2 = '----abcdf++++' print str2.strip('-+') # abcdf
2、replace函数,删除字符串中某一个所有的字符串
ss = 'old old string' ret = ss.replace('old', 'new', 1) print(ret)
3、sub函数,同时删除多个字符串,使用正则表达式
str2 = '\nabc\nwrt22\t666\t' # 删除字符串中的所有\n,\t import re print(re.sub('[\n\t]','',str2)) # abcwrt22666
以上就是python删除str中特定字符的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:3天前赞一波!
相关文章
- 【说站】python归并排序和快速排序比较
- 【说站】python归并排序的基本思路
- 【说站】python Tkinter模块是什么
- 【说站】BigDecimal值在java比较的两种方法
- 【说站】python快速排序的运作过程
- 【说站】python异常是什么?如何解决?
- 【说站】python中mock有哪些统计的方法
- 【说站】python中mock的断言使用
- 【说站】python读取txt文件
- .net 通过 HttpClient 下载文件同时报告进度的方法
- 【说站】python实例创建销毁的函数整理
- 【说站】java方法引用是什么
- 【说站】python如何在二维图像上进行卷积
- 【说站】python轮盘赌算法如何使用
- 【说站】python三种属性管理魔法函数
- 【说站】python集合魔法函数有哪些
- 【说站】python中高斯模糊是什么
- 【说站】python两种不同的文件流读写
- 【说站】python如何将实例用作属性
- 【说站】python从键盘输入若干个整数
文章评论
评论问答