Python字符串常用操作
截取字符串
字符串可以当做一个List来操作。
a = 'this is a test'
a[0:1] # 第一个字符
a[1:5] # 下标1到5,5表示下标而不是数量
a[-1:] # 最后一个字符
是否包含
print(msg.count('verify'))
print(msg.find('verify'))
print(msg.__contains__('verify'))
字符串替换
a.replace('is', 'is not')
分割
a.split(',')
# 反操作,拼接
",".join(b)
去除空格
去除空格和特殊符号,使用lstrip
rstrip
strip
转json
eval(a)
json转字符串
import json
json.dumps(a)