两种方法:
一、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
网友评论