惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
Y
Y Combinator Blog
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
D
Docker
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
B
Blog
Vercel News
Vercel News
Recent Announcements
Recent Announcements
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享

老董笔记

尚硅谷机构在哪?尚硅谷培训怎么样?靠谱吗-互联网IT百科 韩顺平介绍,传智讲师,开办泰牛,入尚硅谷等一系列-互联网IT百科 pandas多重索引标准样式(写入excel有空行)-互联网IT百科 cannot join with no overlapping index names-互联网IT百科 pandas多列变多行(即宽表变长表)melt和stack函数-互联网IT百科 pandas多行转多列(长表变宽表)pivot和unstack-互联网IT百科 Index contains duplicate entries, cannot reshape完美解决-互联网IT百科 single positional indexer is out-of-bounds-互联网IT百科 Can only compare identically-labeled Series objects-互联网IT百科 pandas transform用法详解(多个案例)-互联网IT百科 python四舍五入精确实现-互联网IT百科 pandas的groupby使用apply分组排序-互联网IT百科 index 0 is out of bounds for axis 0 with size 0-互联网IT百科 pandas分组过滤filter函数-互联网IT百科 联想Win10系统如何禁用触摸屏关闭触摸-互联网IT百科 groupby分组计算transform转换返回相同长度序列-互联网IT百科 brooks seo教程python教程,brooks seo教程网盘,布鲁seo资源-互联网IT百科 电脑右键文件夹一直转圈电卡死怎么回事-互联网IT百科 施琪嘉的心理成长课(荐)-互联网IT百科 百度SEO公司_SEO推广公司哪家好_SEO外包服务如何选-老董笔记 groupby后agg同1列用多个聚合函数、不同列用不同函数、自定义函数-互联网IT百科 pandas的groupby单列多列分组聚合运算-互联网IT百科 DataFrameGroupBy对象及分组个数、分组大小、组名索引、组数据详解-互联网IT百科 pandas中groupby之Grouper and axis must be same length-互联网IT百科 pandas中groupby的分组原理-互联网IT百科 pandas的groupby的使用详解大全-互联网IT百科 openpyxl单元格自动换行强制换行Alignment(wrapText=True)-互联网IT百科 python教程全套(可就业)-互联网IT百科 联想win10系统CPU显示100%,电脑呼呼响怎么回事-互联网IT百科 如何自制CPU,CPU原理是怎么样的?-互联网IT百科
python字符串查找替换分割大小写等操作-互联网IT百科
2020-09-14 · via 老董笔记

  场景:

  在网上发帖子,有些言辞会被删除,比如政治、色情、赌博类的,为了过滤这些信息,我们可以收集特征词,比如含有苍老师的帖子不能有,就检查苍老师这个字符串是否在某个帖子中,有的话就把它替换成王老师!这其中就涉及字符串查找和替换的操作!

  设字符串mystr='hello world canglaoshi'

  以下是字符串的各种操作(函数)【末尾贴常用函数的代码】:

1.find
检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1
mystr.find(str, start=0, end=len(mystr))
2.index
find()方法一样,只不过如果str不在 mystr中会报一个异常.
mystr.index(str, start=0, end=len(mystr)) 
3.count
返回 strstartend之间  mystr里面出现的次数
mystr.count(str, start=0, end=len(mystr))
4.replace
 mystr 中的 str1 替换成 str2,如果 count 指定,则替换不超过 count 次.
mystr.replace(str1, str2,  mystr.count(str1))
5.split
 str 为分隔符切片 mystr,如果 maxsplit有指定值,则仅分隔 maxsplit 个子字符串
mystr.split(str=" ", 2)    
6.capitalize
把字符串的第一个字符大写
mystr.capitalize()
7.title
把字符串的每个单词首字母大写
>>> a = "hello itcast"
>>> a.title()
'Hello Itcast'
8.startswith
检查字符串是否是以 obj 开头, 是则返回 True,否则返回 False
mystr.startswith(obj)
9.endswith
检查字符串是否以obj结束,如果是返回True,否则返回 False.
mystr.endswith(obj)
10.lower
转换 mystr 中所有大写字符为小写
mystr.lower()        
11.upper
转换 mystr 中的小写字母为大写
mystr.upper()    
12.ljust
返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串
mystr.ljust(width) 
13.rjust
返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串
mystr.rjust(width)    
14.center
返回一个原字符串居中,并使用空格填充至长度 width 的新字符串
mystr.center(width)   
15.lstrip
删除 mystr 左边的空白字符
mystr.lstrip()
16.rstrip
删除 mystr 字符串末尾的空白字符
mystr.rstrip()    
17.strip
删除mystr字符串两端的空白字符
>>> a = "
	 itcast 	
"
>>> a.strip()
'itcast'
18.rfind
类似于 find()函数,不过是从右边开始查找.
mystr.rfind(str, start=0,end=len(mystr) )
19.rindex
类似于 index(),不过是从右边开始.
mystr.rindex( str, start=0,end=len(mystr))
20.partition
mystrstr分割成三部分,str前,strstr
mystr.partition(str)
21.rpartition
类似于 partition()函数,不过是从右边开始.
mystr.rpartition(str)
22.splitlines
按照行分隔,返回一个包含各行作为元素的列表
mystr.splitlines()  
23.isalpha
如果 mystr 所有字符都是字母 则返回 True,否则返回 False
mystr.isalpha()  
24.isdigit
如果 mystr 只包含数字则返回 True 否则返回 False.
mystr.isdigit() 
25.isalnum
如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False
mystr.isalnum()  
26.isspace
如果 mystr 中只包含空格,则返回 True,否则返回 False.
mystr.isspace()   
27.join
mystr 中每个字符后面插入str,构造出一个新的字符串
mystr.join(str)
28.encodedecode  自己尝试用一下吧
string.encode(encoding='utf-8',errors='strict')
encoding指定的编码格式编码string,如果出错,默认报一个ValueError异常,除非errors指定的是'ignore'或者是'replace'

  常用字符串函数:

 # -*- coding: utf-8 -*-
mystr = ' hello world canglaoshi HELLO'
lis = ['hello','world','canglaoshi','HELLO']
mystr2 = "苍老师来也";
print(mystr.find('canglaoshi'))
print(mystr.index('canglaoshi'))
print(mystr.count('canglaoshi'))
print(mystr.replace('canglaoshi','laowang'))
print(mystr.startswith('canglaoshi'))
print(mystr.endswith('canglaoshi'))
print(mystr.lower())
print(mystr.upper())
print(mystr.strip('canglaoshi'))
print(mystr.split('o'))
print('-'.join(lis))
 
str_utf8 = mystr2.encode("UTF-8")
str_gbk = mystr2.encode("GBK")
print(str_utf8)
print(str_gbk)

D:python3installpython.exe D:/python/py3script/python66.py
13
13
1
 hello world laowang HELLO
False
False
 hello world canglaoshi hello
 HELLO WORLD CANGLAOSHI HELLO
 hello world canglaoshi HELLO
[' hell', ' w', 'rld cangla', 'shi HELLO']
hello-world-canglaoshi-HELLO
b'×e8×8b×8d×e8×80×81×e5×b8×88×e6×9d×a5×e4×b9×9f'
b'×b2×d4×c0×cf×ca×a6×c0×b4×d2×b2'

Process finished with exit code 0

很赞哦!

python编程网提示:转载请注明来源www.python66.com。
有宝贵意见可添加站长微信(底部),获取技术资料请到公众号(底部)。同行交流请加群 python学习会