【发布时间】:2019-12-31 13:35:19
【问题描述】:
我有一个 erlang 脚本,我想从中获取一些数据并将其存储在 python 字典中。 解析脚本很容易得到这样的字符串:
{userdata,
[{tags,
[#dt{number=111},
#mp{id='X23.W'}]},
{log,
'LG22'},
{instruction,
"String that can contain characters like -, _ or numbers"}
]
}.
想要的结果:
userdata = {"tags": {"dt": {"number": 111}, "mp": {"id": "X23.W"}},
"log": "LG22",
"instruction": "String that can contain characters like -, _ or numbers"}
# "#" mark for data in "tags" is not required in this structure.
# Also value for "tags" can be any iterable structure: tuple, list or dictionary.
但我不确定如何将这些数据传输到 python 字典中。我的第一个想法是使用json.loads,但它需要许多修改(将单词放入引号中,将“,”替换为“:”等等)。
此外,userdata 中的键不限于某个池。在这种情况下,有“标签”、“日志”和“指令”,但可以有更多,例如。 “标语”、“标识”等 另外,我不确定订单。我假设键可以随机出现。
我的代码(它不适用于id='X23.W',所以我从输入中删除了“.”):
import re
import json
in_ = """{userdata, [{tags, [#dt{number=111}, #mp{id='X23W'}]}, {log, 'LG22'}, {instruction, "String that can contain characters like -, _ or numbers"}]}"""
buff = in_.replace("{userdata, [", "")[:-2]
re_helper = re.compile(r"(#\w+)")
buff = re_helper.sub(r'\1:', buff)
partition = buff.partition("instruction")
section_to_replace = partition[0]
replacer = re.compile(r"(\w+)")
match = replacer.sub(r'"\1"', section_to_replace)
buff = ''.join([match, '"instruction"', partition[2]])
buff = buff.replace("#", "")
buff = buff.replace('",', '":')
buff = buff.replace("}, {", "}, \n{")
buff = buff.replace("=", ":")
buff = buff.replace("'", "")
temp = buff.split("\n")
userdata = {}
buff = temp[0][:-2]
buff = buff.replace("[", "{")
buff = buff.replace("]", "}")
userdata .update(json.loads(buff))
for i, v in enumerate(temp[1:]):
v = v.strip()
if v.endswith(","):
v = v[:-1]
userdata .update(json.loads(v))
print(userdata)
输出:
{'tags': {'dt': {'number': '111'}, 'mp': {'id': 'X23W'}}, 'instruction': 'String that can contain characters like -, _ or numbers', 'log': 'LG22'}
【问题讨论】:
-
你想要的结果不是有效的python。
-
“很容易解析脚本来获取这样的字符串”你到底是什么意思,通过“解析脚本?”比如源代码?
-
@Wombatz 哦,是的!你说的对!对不起那个错误!
tags的值应该是字典然后:"tags": {"dt": {"number": 111}, "mp": {"id": "X23.W"}}@AlekseiMatiushkin 我不想在我的应用程序中使用 erlang。 @juanpa.arrivillaga 是的。我的输入是一些用 erlang 编写的代码。我正在解析“.erl”文件以从中获取数据。
标签: python json dictionary erlang