作者:
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),
: )