Python 替换字符串

2019-08-01  本文已影响0人  FengxuWang

两种方法:

一、str.replace()方法

适用于替换单个字符

origin_str = 'a;b;c;;d'

result = origin_str.replace(';', '')

# output: abcd

二、re.sub()方法

适合替换字符串中的多种字符,或需要替换多种格式的原字符串

origin_str = 'a/b_c'

result = re.sub(r'/|_', '', origin_str)

# output: abc

origin_str_1 = 'a/b/c'

origin_str_2 = 'a-b-c'

result_1 = re.sub(r'/|_', '', origin_str_1)

# output: abc

result_2 = re.sub(r'/|_', '', origin_str_2)

# output: abc

上一篇下一篇

猜你喜欢

热点阅读