脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python 转换 Javascript %u 字符串为python unicode的代码

python 转换 Javascript %u 字符串为python unicode的代码

2020-09-06 11:54Python教程网 Python

这篇文章主要介绍了python 转换 Javascript %u 字符串为python unicode的代码,需要的朋友可以参考下

web采集的数据为 %u6B63%u5F0F%u4EBA%u5458,需要读取并转换为python对象,想了下不调用Javascript去eval,只能自己翻译了。

核心代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
import re
import codecs
pattern = re.compile('%u[0-9A-Z]{4}')
 
n = codecs.open('d:\\new.txt', 'w', 'utf-8')
with open('d:\\p', 'r') as f:
 for l in f:
  for i in pattern.findall(l):
   l = l.replace(i, unichr(int(i[2:], 16)))
   n.write(l)
 
n.close()

延伸 · 阅读

精彩推荐