search

Home  >  Q&A  >  body text

python 如何让字符串的不具有转义的反斜杠具有转义功能

有一个文件内容是类似于这样子的:
ID = "\"" alphanums* "\"";
读出文件后,输出的字符串就是这样带有斜杠的
请问读出文件之后,怎么让里面的转义字符\n,\",\r,具有转义功能呢?手动写一个函数匹配转义吗?

天蓬老师天蓬老师2785 days ago870

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-18 10:29:44

    Using codecs, it looks like this:

    # python3 code
    import codecs
    
    print(codecs.getdecoder("unicode_escape")('first line\nsecond line\n\"\"\"')[0])

    Result:

    first line
    second line
    """

    Questions I answered: Python-QA

    reply
    0
  • Cancelreply