面试题:给定一个字符串,配置解析及存储(Python)
给定一个字符串,里面为K、V的配置信息,请构造程序将其解析及存储。
实例字符串为 " abc =b\\n ;c=\\x61d;d=234;t=\\n;d=\"test;yes\";"
。
代码如下:
some_str = " abc=b\\n ;c=\\x61d;d=234;t=\\n;d=\"test;yes\";"
ignore, flag = False, True
key, value = '', ''
index, temp = 0, 0 # index 存储新的字符串开始的位置,temp 为上个 index 的值
while flag:
new_str = some_str[index:] # 复制新的字符串用于获取字符,应该使得字符串从 index 开始新的字符串遍历,即去掉key 或者去掉 value
if len(new_str) == 0: # 判断 new_str 是否空,为空则退出
flag = not flag
break
for j in range(len(new_str)): # 遍历字符串
if new_str[j] == '"':
ignore = not ignore
elif (not ignore) and (new_str[j] == '='):
key = ''.join(new_str[:j]) # 获取 key
index = j + 1 + temp # 去掉 key,用于从字符串中 = 后开始新的字符串
temp = index
break
elif (not ignore) and (new_str[j] == ';'):
value = ''.join(new_str[:j]) # 获取 value
index = j + 1 + temp # 去掉 value, 用于从字符串中 ; 后开始新的字符串
temp = index
print("{}={}".format(key, value))
break