python(字符串操作)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python(字符串操作)相关的知识,希望对你有一定的参考价值。

一、字符串的局部替换

python 字符串替换可以用2种方法实现:
1是用字符串本身的方法。
2用正则来替换字符串

 

下面用个例子来实验下:
a = ‘hello word‘
我把a字符串里的word替换为python
1用字符串本身的replace方法
a.replace(‘word‘,‘python‘)
输出的结果是hello python

2用正则表达式来完成替换:
import re
strinfo = re.compile(‘word‘)
b = strinfo.sub(‘python‘,a)
print b
输出的结果也是hello python













以上是关于python(字符串操作)的主要内容,如果未能解决你的问题,请参考以下文章

python基础之 列表元组操作 字符串操作 字典操作 集合操作 文件操作 字符编码与转码

31. Python redis的字符串操作 list操作 set操作

python字符串格式化: %操作符 {}操作符

Python操作字符串

python字符串操作

Python初级005-字符串操作