※ 引述《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),
)