Python中的re模块
用法 | 说明 |
---|---|
str.replace(old, new[, max]) | replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。 |
re.sub(’\d+’,‘666’,inputStr) | 将inputStr中的数字替换成666 |
\d:匹配任意一个数字 包括[0-9]和其他数字字符
\D:(\d)的相反
import re
inputStr = 'hello 123 world 456'
print(inputStr)
replaceStr = inputStr.replace('123','321')
print(replaceStr)
replaceStr = re.sub('\d+',' *666* ',inputStr)
print(replaceStr)
replaceStr = re.sub('\D+',' *666* ',inputStr)
print(replaceStr)
输出结果:
hello 123 world 456
hello 321 world 456
hello *666* world *666*
*666* 123 *666* 456
Kaiser king
发布了68 篇原创文章 · 获赞 6 · 访问量 1764
私信
关注