python 字串整詞替換

G8bao7發表於2015-05-19

    # 整詞匹配
    src = "a b ab ba aa bb aab baa ccc ddd"
    print "src, '%s'" % (src)
    # a > c
    old="a"
    new = "c"
    dst_1 = re.sub(r"\b%s\b" % (old), new, src)
    print "%s To %s, '%s'" % (old, new, dst_1)
    # aa > dd
    old="aa"
    new = "dd"
    dst_2 = re.sub(r"\b%s\b" % (old), new, src)
    print "%s To %s, '%s'" % (old, new, dst_2)

輸出
src, 'a b ab ba aa bb aab baa ccc ddd'
a To c, 'c b ab ba aa bb aab baa ccc ddd'
aa To dd, 'a b ab ba dd bb aab baa ccc ddd'

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26250550/viewspace-1661746/,如需轉載,請註明出處,否則將追究法律責任。

相關文章