Re: [问题] GUID 字串格式转换

楼主: LwHow (Do)   2017-07-28 13:31:49
感谢各路前辈的提点,小弟整理出最后的三个Solution出来。
1. UUID:
tmpStr = ""
tmpList = Str.split(", ")
for i, p in enumerate(tmpList):
width = 0
if i == 0:
width = 8
elif i == 1 or i == 2:
width = 4
else:
width = 2
i = i + 1
tmpStr += p[2:].zfill(width)
return tmpStr
print(uuid.UUID(modifyGuidFormat2(source)))
2-1. String format:
tmpList = Str.split(", ")
for i, element in enumerate(tmpList):
width = 0
if i == 0:
width = 8
elif i == 1 or i == 2:
width = 4
else:
width = 2
tmpList[i] = element[2:].zfill(width)
return "-".join([tmpList[0], tmpList[1], tmpList[2],
"".join(tmpList[3:5]), "".join(tmpList[5:])])
2-2. String Format:
first, second, third, fourth, fifth, * \
rest_parts = [s.strip()[2:] for s in source.split(',')]
output = '{first:0>8}-{second:0>4}-{third:0>4}-{fourth:0>4}-{rest:0>8}'.format(
first=first, second=second, third=third, fourth=fourth + fifth.zfill(2),
rest=''.join(p.zfill(2) for p in rest_parts),)
return output
以上,再次感谢大家的教导。
※ 引述《uranusjr (←这人是超级笨蛋)》之铭言:
: ※ 引述《LwHow (Do)》之铭言:
: : 0x798ffd60, 0xf10e, 0x4ac4, 0x89, 0x39, 0xc8, 0xbe, 0xab, 0xfe, 0x55, 0xb4
: : 798ffd60-f10e-4ac4-8939-c8beabfe55b4
: : 有一个重点就是,格式必须要符合宽度
: : 例如 第一组资料如果是0xffd60,则我们必须把资料补满为
: : 000ffd60-xxxx-xxxx-xxxx-xxxxxxxx
: : 其他字段以此类推
: 推 darkgerm: 撇开uuid的话 这个用format string就能做到了 07/21 09:19
: → darkgerm: 可以看 str.format 07/21 09:20
: 我没看你的程式, 不过按照你的需求, 假设最后面那组也是补 leading zeros
: 那么可以这样写 (需要 Python 3)
: # 把资料用逗号拆开, 每笔去掉前后空白和 0x 开头
: # 前三笔叫 first second third, 剩下的放到 rest_parts (会是个 list)
: first, second, third, *rest_parts = [s.strip()[2:] for s in source.split(',')]
: # 把 rest_parts join 起来叫做 rest, 然后组合成结果
: # 每个 variable 后面的 : 代表资料格式, 后面格式符号的意思是:
: # > 代表向右对齐
: # 0 代表前面补 0
: # 最后一位数字代表至少补到几位
: output = '{first:0>8}-{second:0>4}-{third:0>4}-{rest:0>8}'.format(
: first=first, second=second, third=third,
: rest=''.join(p.zfill(2) for p in rest_parts),
: )

Links booklink

Contact Us: admin [ a t ] ucptt.com