美文网首页
Python 替换字符串

Python 替换字符串

作者: FengxuWang | 来源:发表于2019-08-01 11:48 被阅读0次

    两种方法:

    一、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

    相关文章

      网友评论

          本文标题:Python 替换字符串

          本文链接:https://www.haomeiwen.com/subject/lkrqdctx.html