1. 程式人生 > >json單引號 雙引號問題

json單引號 雙引號問題

json 屬性值用雙引號

思路:     將單引號轉換為 @#$

將雙引號轉換為^^&

def json_quote(string):
    singlequote = "@#$"
    doublequote = "^^&"
    string = str(string).replace("'",singlequote)
    string = str(string).replace('"',doublequote)
    string = str(string).replace(doublequote,"'")
    string = str(string).replace(singlequote,'"')
    return string