欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python中将\\uxxxx转换为Unicode字符串的方法

程序员文章站 2022-05-29 10:56:06
今天碰到一个很有意思的问题,需要将普通的 unicode字符串转换为 unicode编码的字符串,如下: 将 \\u9500\\u552e 转化为 \u9500\u552...

今天碰到一个很有意思的问题,需要将普通的 unicode字符串转换为 unicode编码的字符串,如下:

将 \\u9500\\u552e 转化为 \u9500\u552e 也就是 销售 。

乍一看感觉挺简单的,用 re 库将前面的反斜杠去掉即可,但是在替换的过程中会抛出如下错误:

traceback (most recent call last):
  file "<pyshell#15>", line 1, in <module>
    re.sub(r"(\)\u", r'', t)
  file "d:\python36\lib\re.py", line 191, in sub
    return _compile(pattern, flags).sub(repl, string, count)
  file "d:\python36\lib\re.py", line 301, in _compile
    p = sre_compile.compile(pattern, flags)
  file "d:\python36\lib\sre_compile.py", line 562, in compile
    p = sre_parse.parse(p, flags)
  file "d:\python36\lib\sre_parse.py", line 855, in parse
    p = _parse_sub(source, pattern, flags & sre_flag_verbose, 0)
  file "d:\python36\lib\sre_parse.py", line 416, in _parse_sub
    not nested and not items))
  file "d:\python36\lib\sre_parse.py", line 765, in _parse
    p = _parse_sub(source, state, sub_verbose, nested + 1)
  file "d:\python36\lib\sre_parse.py", line 416, in _parse_sub
    not nested and not items))
  file "d:\python36\lib\sre_parse.py", line 502, in _parse
    code = _escape(source, this, state)
  file "d:\python36\lib\sre_parse.py", line 362, in _escape
    raise source.error("incomplete escape %s" % escape, len(escape))
sre_constants.error: incomplete escape \u at position 3

大概意思就是去掉前面的反写杠之后剩下的 \u 不能组成完整的字符。

到这里问题好像有点难以解决了,这时候我们会放弃吗?

当然不会,到谷歌上搜一下,发现还真有人碰到过这个问题,解决方法也是十分的巧妙。

竟然还可以使用 json 库的 loads 方法 ...

解决方法如下:

import json
s = '\\u9500\\u552e'
print(json.loads(f'"{s}"'))

ps:python3 将字符串unicode转换为中文

记录一个经常会遇到的问题:

得到的文本打印出来是“\uxxxx”的字符串格式,在python3中使用text.decode('unicode_escape')会报错:‘str' object has no attribute 'decode'

正确的姿势是:

text.encode('utf-8').decode("unicode_escape")

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。